Hello-world/.woodpecker.yml
2022-02-18 21:44:23 -06:00

37 lines
628 B
YAML

pipeline:
test0:
image: bash
commands:
- git status
test1:
image: bash
commands:
- pwd
- w
- neofetch
- echo $HOME
- if [ $PASSWORD = "helloworld" ]; then echo "YAY"; fi
secrets: [ password ]
test2:
image: sh
commands:
- pwd
- w
- neofetch
- 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