1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00
seirdy.one/.build.yml
Rohan Kumar efa589508f
Stop running lighthouse/webhint every commit
Go back to running them manually on my own. They're too slow and buggy
for CI.
2021-01-20 12:50:24 -08:00

31 lines
778 B
YAML

---
image: alpine/edge
packages:
- rsync
- zopfli # for max compression w/ gzip_static
- brotli # for max compression w/ brotli_static, decompressing binaries
- git # for Hugo's gitInfo
- make
- jq
sources:
- https://git.sr.ht/~seirdy/seirdy.one
secrets:
- cc1eb90c-b07b-4c46-86d4-58fec41cf0e4
triggers:
- action: email
condition: always
to: seirdy@seirdy.one
tasks:
- deps: |
echo "StrictHostKeyChecking=no" >> ~/.ssh/config
rsync deploy@seirdy.one:/home/deploy/binaries.tar.br .
mkdir -p ~/bin
brotli -dc binaries.tar.br | tar x -oC ~/bin
cd seirdy.one
- build_deploy: |
cd seirdy.one
export PATH=~/bin:$PATH
make clean deploy
cp mentions.json ~/mentions.json
artifacts:
- mentions.json