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: |