add doc for coldy 1.3.1
All checks were successful
/ test_checkout (push) Successful in 51s

This commit is contained in:
Jean-Marie 'Histausse' Mineau 2025-12-06 20:56:41 +01:00
parent de568bd020
commit 689e259f5b
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
4 changed files with 38 additions and 9 deletions

View file

@ -5,7 +5,7 @@ jobs:
container:
image: ghcr.io/typst/typst:0.14.0
steps:
- run: apk add --no-cache git curl
- run: apk add --no-cache git curl unzip
- run: |
mkdir /tmp/font
cd /tmp/font
@ -14,6 +14,12 @@ jobs:
install -Dt /usr/share/fonts/tex-gyre -m644 tg2_501otf/*.otf
mkdir -p ~/.local/share/typst/packages/local/template-thesis-matisse/
git clone https://git.mineau.eu/histausse/template-thesis-matisse.git ~/.local/share/typst/packages/local/template-thesis-matisse/0.0.1
mkdir /tmp/codly
curl -L https://github.com/Dherse/codly/archive/refs/tags/v1.3.1.zip -o /tmp/codly/c.zip
unzip -d /tmp/codly /tmp/codly/c.zip
mkdir -p ~/.local/share/typst/packages/local/codly
mv /tmp/codly/codly-1.3.1 ~/.local/share/typst/packages/local/codly/1.3.1
rm -rf /tmp/codly
- run: |
TOKEN=$(echo -n "x-access-token:${GITHUB_TOKEN}" | base64)
mkdir -p "${GITHUB_WORKSPACE}"