knowyt/.woodpecker.yml
Settel 656e125a3f
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat: use proper golang image
2022-11-06 09:15:37 +01:00

15 lines
327 B
YAML

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