From cc56ccecd770048a5d8a32c6b118a4e5cf771dfa Mon Sep 17 00:00:00 2001 From: servostar Date: Fri, 19 Jul 2024 09:31:17 +0200 Subject: [PATCH] changed install path for typst --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4841550..33848c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: run-ci-linux: runs-on: ubuntu-latest env: - TYPST_INSTALL: /usr/local + TYPST_INSTALL: $HOME/.typst TYPST_VERSION: 0.11.1 steps: - name: Check out repository code @@ -16,4 +16,4 @@ jobs: - name: Set up Python 3 run: apt update -y && apt install python3-pip -y - name: Run CI - run: bash -c ./run-ci.sh + run: export PATH="$TYPST_INSTALL/bin:$PATH" && bash -c ./run-ci.sh