ese-website/.forgejo/workflows/publish.yaml

42 lines
1 KiB
YAML
Raw Normal View History

2024-10-05 12:25:41 +02:00
name: publish
on:
push:
branches:
2024-10-06 22:35:14 +02:00
- test
2024-10-05 12:25:41 +02:00
jobs:
publish:
runs-on: ubuntu-latest
2024-10-06 22:35:14 +02:00
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_DEPLOY_PRIVATE_KEY }}
2024-10-05 12:25:41 +02:00
steps:
2024-10-06 22:39:01 +02:00
- name: checkout
uses: actions/checkout@v4
2024-10-05 12:25:41 +02:00
with:
submodules: recursive
2024-10-06 22:39:01 +02:00
- name: setup node
uses: actions/setup-node@v4
2024-10-05 12:25:41 +02:00
with:
2024-10-06 20:08:18 +02:00
node-version: 'lts/*'
2024-10-05 12:25:41 +02:00
- run: npm ci
- run: npm run build
2024-10-06 22:39:01 +02:00
- name: upload artifact
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
2024-10-05 12:25:41 +02:00
with:
path: _site
2024-10-06 22:39:01 +02:00
- name: deploy
2024-10-06 22:35:14 +02:00
run: |
2024-10-06 23:03:11 +02:00
apt-get update && apt-get install -y rsync
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && chmod +x /usr/bin/yq
2024-10-06 22:35:14 +02:00
eval $(ssh-agent -s)
echo "$SSH_PRIVATE_KEY" | ssh-add -
mkdir ~/.ssh
2024-10-06 23:03:11 +02:00
year=$(yq '.year' content/_data/ese.yaml)
rsync -rvh --progress --delete --chmod=ugo=rwX _site/ ese-deploy@ifsr.de:"$year"