delegationetudiante/.forgejo/workflows/pages.yaml

44 lines
1.2 KiB
YAML
Raw Normal View History

2025-02-15 01:21:15 -05:00
on:
push:
branches:
- 'main'
jobs:
render:
runs-on: x86_64
container:
image: alpine:latest
steps:
- name: Environment setup
run: |
apk add git ikiwiki po4a perl-yaml-tiny tree nodejs
- name: Repo pull
uses: actions/checkout@v4
with:
fetch-depth: 1
token: ${{ secrets.PAGES_TOKEN }}
- name: Pages repo pull
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: pages
path: pages
token: ${{ secrets.PAGES_TOKEN }}
- name: Render website
run: ikiwiki --setup ikiwiki.setup
- name: Website upload
run: |
rm -Rf pages/.forgejo .domains
mkdir -p pages/.forgejo/workflows
cp .forgejo/workflows/deploy.yaml pages/.forgejo/workflows/.
cp .domains pages/.domains
git log -1 --pretty=%B > commit.txt
cd pages
date > generated.txt
# Note: the following account information will not work on GHES
git config user.name "forgejo-actions[bot]"
git config user.email "dev@ayakael.net"
git add .
git commit -F ../commit.txt
git push