guile-knots/.forgejo/workflows/demo.yaml
Christopher Baines eadfa53b36
All checks were successful
/ test (push) Successful in 13s
WIP
2025-06-24 21:00:54 +02:00

22 lines
833 B
YAML

on:
push:
branches:
- actions-test
jobs:
test:
runs-on: host
steps:
- run: git clone --depth=1 https://$FORGEJO_TOKEN@forge.cbaines.net/cbaines/guile-knots.git knots-trunk
- run: git clone --depth=1 https://$FORGEJO_TOKEN@forge.cbaines.net/cbaines/guile-knots.git --branch=pages knots-pages
- run: |
cd knots-trunk
guix shell -D -f guix-dev.scm -- documenta api knots
guix shell texinfo -- makeinfo --css-ref=https://luis-felipe.gitlab.io/texinfo-css/static/css/texinfo-7.css --no-split --html -o ../knots-pages/index.html doc/index.texi
- run: |
cd knots-pages
git add .
git config user.email ""
git config user.name "Automatic website updater"
git commit -m "Automatic website update"
git push