delegationetudiante/.forgejo/workflows/pages.yaml
Antoine Martin 3700e98acf
Some checks failed
/ render (push) Failing after 36s
forgejo-ci: Do not ask for token
2025-02-15 01:22:24 -05:00

41 lines
1.1 KiB
YAML

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
- name: Pages repo pull
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: pages
path: pages
- 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