delegationetudiante/.forgejo/workflows/pages.yaml

40 lines
1 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
- name: Pages repo pull
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: pages
2025-02-15 01:27:49 -05:00
path: public
2025-02-15 01:21:15 -05:00
- name: Render website
run: ikiwiki --setup ikiwiki.setup
- name: Website upload
run: |
cp .pages-domains public/.domains
cp .pages-redirect public/_redirects
2025-02-15 01:21:15 -05:00
git log -1 --pretty=%B > commit.txt
2025-02-15 01:27:49 -05:00
cd public
2025-02-15 01:21:15 -05:00
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