forgejo-ci: add push.yaml from public branch
All checks were successful
/ render (push) Successful in 34s
All checks were successful
/ render (push) Successful in 34s
This commit is contained in:
parent
c6db2dfdc7
commit
5e413c3c94
1 changed files with 27 additions and 0 deletions
27
.forgejo/workflows/push.yaml
Normal file
27
.forgejo/workflows/push.yaml
Normal 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
|
Loading…
Reference in a new issue