redstrate.com/.build.yml

25 lines
663 B
YAML
Raw Normal View History

2022-10-27 11:03:35 -04:00
image: alpine/edge
packages:
- rsync
- git
- hugo
sources:
- https://git.sr.ht/~redstrate/redstrate.com
secrets:
- b748582a-5d31-4fe8-94d6-4a63035e97aa
tasks:
- build: |
cd redstrate.com
2023-08-10 10:41:44 -04:00
hugo --minify
2022-10-27 11:03:35 -04:00
- deploy: |
cd redstrate.com
echo "StrictHostKeyChecking=no" >> ~/.ssh/config
2023-01-02 17:11:17 -05:00
rsync -e 'ssh -p 38901' -Wvr public/ deploy@ryne.moe:/srv/http/redstrate.com
2023-03-30 21:47:18 -04:00
- build-retro: |
cd redstrate.com
2023-08-10 10:41:44 -04:00
hugo --minify --theme retro
2023-03-30 21:47:18 -04:00
- deploy-retro: |
cd redstrate.com
echo "StrictHostKeyChecking=no" >> ~/.ssh/config
rsync -e 'ssh -p 38901' -Wvr public/ deploy@ryne.moe:/srv/http/retro.redstrate.com