knowyt/.woodpecker.yml

29 lines
484 B
YAML
Raw Normal View History

2022-11-04 20:36:24 +00:00
pipeline:
build:
2022-11-04 20:40:40 +00:00
image: node:16-alpine
2022-11-04 20:36:24 +00:00
commands:
- apk add make
- apk add go
- apk add go-bindata
- make setup-code
- (cd client/ && yarn generate)
2022-11-04 21:17:39 +00:00
- make -C server build
2022-11-05 20:18:08 +00:00
when:
branch: none
step1:
image: alpine:latest
commands:
- date
2022-11-05 20:51:38 +00:00
- ls -l
- date >step1.txt
- ls -l
2022-11-05 20:18:08 +00:00
step2:
image: alpine:latest
commands:
- date
2022-11-05 20:51:38 +00:00
- ls -l
- date >step2.txt
- ls -l