Created
March 8, 2018 09:49
-
-
Save VireshDoshi/3b5b13d4b57a7aaef74fbef7745b0897 to your computer and use it in GitHub Desktop.
concourse hello world pipeline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
- name: hello-world | |
plan: | |
- task: say-hello | |
config: | |
platform: linux | |
image_resource: | |
type: docker-image | |
source: {repository: ubuntu} | |
run: | |
path: echo | |
args: ["Hello, world!"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment