ayakael.net/.forgejo/workflows/pages.yaml

32 lines
851 B
YAML
Raw Normal View History

2024-08-25 22:48:26 +00:00
on: [push]
jobs:
render:
runs-on: x86_64
container:
image: alpine:latest
steps:
- name: Environment setup
run: |
2024-08-25 22:50:14 +00:00
apk add git ikiwiki po4a perl-yaml-tiny tree nodejs
2024-08-25 22:48:26 +00:00
- name: Repo pull
uses: actions/checkout@v4
with:
fetch-depth: 500
- name: Public repo pull
uses: actions/checkout@v4
with:
fetch-depth: 500
ref: public
path: public
2024-08-25 22:48:26 +00:00
- name: Render website
run: ikiwiki --setup ikiwiki.setup
- name: Website upload
run: |
cd public
git config user.name ${{ vars.PAGES_USER }}
git config user.password "${{ secrets.PAGES_TOKEN }}
git commit -m 'Update'
git remote set-url origin ${{ github.server_url }}.${{ github.repository }}
git push