gamja/.build.yml

20 lines
494 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:
2022-07-09 06:26:39 -04:00
- 77c7956b-003e-44f7-bb5c-2944b2047654 # 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-12-16 17:14:10 -05:00
[ "$(git rev-parse HEAD)" = "$(git rev-parse origin/master)" ] || complete-build
2021-11-17 04:31:09 -05:00
rsync --rsh="ssh -o StrictHostKeyChecking=no" -rP \
--delete --exclude=config.json \
2022-07-09 06:26:39 -04:00
. deploy@sheeta.emersion.fr:/srv/http/gamja