Compare commits

...

3 commits

Author SHA1 Message Date
27e6bc2a1d WIP
Some checks failed
/ test (push) Failing after 23s
2025-06-24 20:56:56 +02:00
8401af8460 WIP 2025-06-24 20:51:11 +02:00
f7eae5a3bc Add texinfo to guix-dev.scm 2025-06-24 20:50:44 +02:00
2 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,22 @@
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 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

View file

@ -30,6 +30,7 @@
(gnu packages guile) (gnu packages guile)
(gnu packages guile-xyz) (gnu packages guile-xyz)
(gnu packages pkg-config) (gnu packages pkg-config)
(gnu packages texinfo)
(srfi srfi-1)) (srfi srfi-1))
(package (package
@ -44,7 +45,8 @@
(list autoconf (list autoconf
automake automake
pkg-config pkg-config
guile-documenta)) guile-documenta
texinfo))
(synopsis "TODO") (synopsis "TODO")
(description "TODO") (description "TODO")
(home-page "TODO") (home-page "TODO")