ilot-io/.forgejo/workflows/pages.yaml

42 lines
1.2 KiB
YAML
Raw Normal View History

2024-08-25 22:33:21 -04:00
on:
push:
branches:
- 'main'
jobs:
render:
runs-on: x86_64
container:
image: alpine:latest
steps:
- name: Environment setup
run: |
2025-03-31 20:28:00 -04:00
apk add git ikiwiki po4a perl-yaml-tiny tree nodejs imagemagick-perlmagick imagemagick imagemagick-jpeg findutils bash imagemagick-webp
2024-08-25 22:33:21 -04:00
- name: Repo pull
2025-03-31 20:28:00 -04:00
uses: actions/checkout@v4
2024-08-25 22:33:21 -04:00
with:
fetch-depth: 1
2025-03-31 20:28:00 -04:00
- name: Pages repo pull
uses: actions/checkout@v4
2024-08-25 22:33:21 -04:00
with:
fetch-depth: 0
2025-03-31 20:28:00 -04:00
ref: pages
2024-08-25 22:33:21 -04:00
path: public
- name: Render website
run: ikiwiki --setup ikiwiki.setup
- name: Website upload
run: |
2025-03-31 20:28:00 -04:00
cp .pages-domains public/.domains
cp .pages-redirect public/_redirects
2024-08-25 22:33:21 -04:00
git log -1 --pretty=%B > commit.txt
cd public
2025-03-31 20:28:00 -04:00
find -name 'index.html' -type 'l' -delete
find -name 'index.fr.html' -exec bash -c 'ln -s "${0/.*\/}" "${0/.fr/}"' {} \;
2024-08-25 22:33:21 -04: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