knowyt/.woodpecker.yml
2022-11-05 21:18:08 +01:00

33 lines
574 B
YAML

pipeline:
build:
image: node:16-alpine
commands:
- apk add make
- apk add go
- apk add go-bindata
- make setup-code
- (cd client/ && yarn generate)
- make -C server build
when:
branch: none
step1:
image: alpine:latest
commands:
- date
- ls -l /mnt/
- date >/mnt/step1.txt
- ls -l /mnt/
volumes:
- /mnt:/mnt
step2:
image: alpine:latest
commands:
- date
- ls -l /mnt/
- date >/mnt/step2.txt
- ls -l /mnt/
volumes:
- /mnt:/mnt