delegationetudiante/.forgejo/workflows/pages.yaml
Antoine Martin 4c525b588d
All checks were successful
/ render (push) Successful in 37s
Dont copy over workflow
2025-02-15 01:23:49 -05:00

38 lines
989 B
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: |
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