Hello-world/.woodpecker.yml
Anthony Wang 6df050a05f
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Update '.woodpecker.yml'
2022-09-25 21:05:12 +00:00

36 lines
609 B
YAML

pipeline:
test0:
image: bash
commands:
- git status
test1:
image: bash
commands:
- pwd
- w
- whoami
- echo $HOME
- if [ $PASSWORD = "helloworld" ]; then echo "YAY"; fi
secrets: [ password ]
test2:
image: sh
commands:
- pwd
- w
- echo $HOME
test3:
image: fish
commands:
- echo test > test
- echo test2 >> test
- echo (cat test)
- python -c "import this"
- set test a
- echo $test
test4:
image: zsh
commands:
- echo Hello world!
- echo $SHELL
- pwd