knowyt/.woodpecker.yml
Settel 1e752467eb
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
bugfix: install make
2022-11-06 09:17:17 +01:00

20 lines
418 B
YAML

pipeline:
frontend:
image: node:16-alpine
commands:
- ( cd client && yarn install )
- ( cd client/ && yarn generate )
- mkdir -p client/.output/public/
when:
branch: woodpecker
backend:
image: golang:1.18-alpine
commands:
- apk add go-bindata
- apk add make
- make -C server setup
- make -C server build
when:
branch: woodpecker