From 288298ac184083c348cc23adb191614e194b4380 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 21 Feb 2026 15:21:53 -0500 Subject: [PATCH] Install python. --- .gitea/workflows/build.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index fc147fb..0ad5aad 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -3,12 +3,10 @@ name: Build on: push: branches: - - '*' - # Runs on tag so the release workflow can use its artifact. + - main tags: - - "v*" + - 'v*' pull_request: - workflow_dispatch: jobs: Build: @@ -19,6 +17,11 @@ jobs: run: | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + - name: Install Python + run: | + sudo apt update - y + sudo apt install python3 -y + - name: Install Qt uses: jurplel/install-qt-action@v4 with: