concourse-scripts/pipelines/st/st-image.yml
laurens 4e20b67277 ST: First build pipeline
Pipeline for docker image
Pipeline for building st (using docker image from previous pipeline)

TODO: No publishing of a release yet, didn't find anything yet to push
release to
2020-04-19 17:48:03 +02:00

25 lines
484 B
YAML

resources:
- name: st-git
type: git
source:
uri: https://github.com/laurensmiers/st.git
branch: master
- name: st-builder-image
type: docker-image
source:
email: ((docker-hub-email))
username: ((docker-hub-username))
password: ((docker-hub-password))
repository: ((docker-hub-username))/st-builder
jobs:
- name: publish
public: true
serial: true
plan:
- get: st-git
trigger: true
- put: st-builder-image
params:
build: st-git