From cd06d6c8b0d627caa9f1e8dc727bce383c69710d Mon Sep 17 00:00:00 2001 From: Doschennikov Nikita Date: Tue, 24 Feb 2026 17:22:23 +0000 Subject: [PATCH] Update .gitea/workflows/compile-typst.yml --- .gitea/workflows/compile-typst.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/compile-typst.yml b/.gitea/workflows/compile-typst.yml index 79fb57c..7ad907f 100644 --- a/.gitea/workflows/compile-typst.yml +++ b/.gitea/workflows/compile-typst.yml @@ -10,9 +10,13 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Compile Typst + - name: Install Typst run: | - typst compile cv.typ + curl -L https://github.com/typst/typst/releases/latest/download/typst-x86_64-unknown-linux-musl.tar.xz \ + | tar -xJ --strip-components=1 -C /usr/local/bin typst-x86_64-unknown-linux-musl/typst + + - name: Compile Typst + run: typst compile cv.typ --root . - name: Check if PDF was created run: |