From d3638b0957d1fd7024bdf3f67fc3d30581fef845 Mon Sep 17 00:00:00 2001 From: Sven Vogel Date: Fri, 5 Jul 2024 15:03:54 +0200 Subject: [PATCH] changed: replaced setup-python with manual install --- .gitea/workflows/ci.yml | 4 +--- .gitea/workflows/release.yml | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index a58be81..111dd3a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,8 +14,6 @@ jobs: - name: Install Typst CLI run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION" - name: Set up Python 3 - uses: actions/setup-python@v4 - with: - python-version: '3.12' + run: apt install python3-pip - name: Run CI run: bash -c ./run-ci.sh diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index a42bff3..6d50330 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -15,9 +15,7 @@ jobs: - name: Install Typst CLI run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION" - name: Set up Python 3 - uses: actions/setup-python@v4 - with: - python-version: '3.12' + run: apt install python3-pip - name: Run CI run: bash -c ./run-ci.sh - name: Setup go