From 486cbb4df3542945271a96ee715c64ce497ea0e6 Mon Sep 17 00:00:00 2001 From: alexander Date: Sun, 14 Dec 2025 19:16:30 +0100 Subject: [PATCH] Maybe? --- .gitea/workflows/build-script.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build-script.yaml b/.gitea/workflows/build-script.yaml index f53f633..8f2af97 100644 --- a/.gitea/workflows/build-script.yaml +++ b/.gitea/workflows/build-script.yaml @@ -27,15 +27,19 @@ jobs: - name: Show Typst & OS versions run: | - typst --version || true + typst --version uname -a - name: Debug Ls run: ls -la "$PWD" && echo "$PWD" - name: Compile all .typ files - shell: bash - run: "TYPST_SOURCE_DIR=${{ env.TYPST_SOURCE_DIR }} BUILD_DIR=${{ env.BUILD_DIR }} ./compile-all.bash" + uses: addnab/docker-run-action@v3 + with: + image: ghcr.io/typst/typst:0.14.2 + options: --volumes-from=${{ env.JOB_CONTAINER_NAME }} + run: "TYPST_SOURCE_DIR=${{ env.TYPST_SOURCE_DIR }} BUILD_DIR=${{ env.BUILD_DIR }} ./compile-all.bash" + - name: Upload PDFs if: always()