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()