gamja/.build.yml

19 lines
458 B
YAML
Raw Normal View History

2021-11-17 04:20:49 -05:00
image: alpine/latest
packages:
- npm
2021-11-17 04:31:09 -05:00
- rsync
2021-11-17 04:20:49 -05:00
sources:
- https://git.sr.ht/~emersion/gamja
2021-11-17 04:31:09 -05:00
secrets:
- 5874ac5a-905e-4596-a117-fed1401c60ce # deploy SSH key
2021-11-17 04:20:49 -05:00
tasks:
- setup: |
cd gamja
npm install --include=dev
npm run build
2021-11-17 04:31:09 -05:00
- deploy: |
cd gamja/dist
2021-11-17 04:33:16 -05:00
[ "$(git branch --show-current)" = "master" ] || complete-build
2021-11-17 04:31:09 -05:00
rsync --rsh="ssh -o StrictHostKeyChecking=no" -rP \
--delete --delete-excluded . deploy@emersion.fr:/srv/http/gamja