forgejo-ci: copy main's push workflow to public branch when deploying

This commit is contained in:
IkiWiki 2024-08-25 20:41:42 -04:00
parent ca8f37eb4b
commit 7c64f3ea04
Signed by untrusted user who does not match committer: forge
GPG key ID: D62A472A4AA7D541
2 changed files with 28 additions and 0 deletions

View file

@ -25,6 +25,7 @@ jobs:
run: ikiwiki --setup ikiwiki.setup
- name: Website upload
run: |
cp .forgejo/workflow/push.yaml public/.forgejo/workflow/.
git log -1 --pretty=%B > commit.txt
cd public
date > generated.txt

View file

@ -0,0 +1,27 @@
on:
push:
branches:
- 'public'
jobs:
deploy:
runs-on: x86_64
container: alpine:latest
env:
GIT_SSH_COMMAND: ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no
steps:
- name: Environment setup
run: |
apk add git nodejs openssh-client-common openssh-client-default
- name: Start ssh-agent
uses: https://github.com/webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.PAGES_PRIVKEY }}
- name: Repo pull
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Website upload
run: |
git remote set-url origin pages@ayakael.net:/var/lib/pages/ayakael.net
git push -f