From abeac296216f5baf4bc7a0b8280bc419d59d219f Mon Sep 17 00:00:00 2001 From: Sebastian Rust Date: Fri, 6 Feb 2026 10:03:18 +0100 Subject: [PATCH] fix(cicd): installing pip directly fuck setup-python --- .gitea/workflows/build.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 43a0dee..fe47f32 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -15,11 +15,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Setup Python - uses: actions/setup-python@v5 - with: - python-version: '3.12' - cache: 'pip' + - name: Install Python + run: | + apt-get update && apt-get install -y python3 python3-pip - name: Install dependencies run: |