Hello-world/.woodpecker.yml
2022-01-20 19:23:32 -06:00

32 lines
528 B
YAML

clone:
git:
image: bash
commands:
- git clone https://git.exozy.me/Ta180m/Hello-world.git
pipeline:
build:
image: bash
commands:
- cd Hello-world
- git status
run:
image: bash
commands:
- pwd
- w
- neofetch
- if [ $PASSWORD = "helloworld" ]; then echo "YAY"; fi
secrets: [ password ]
run:
image: sh
commands:
- pwd
- w
- neofetch
run:
image: python
commands:
- a = 2 + 2
- print(a)
- import this