From d0b43b61271c8bc9e3381bad4813049d8d3e81f2 Mon Sep 17 00:00:00 2001 From: pederhan Date: Fri, 11 Oct 2024 15:14:25 +0200 Subject: [PATCH] Fix build workflow --- .github/workflows/publish.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1c5bb9e1..fbff14f1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: # https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs#determining-when-to-use-contexts - name: Exit if not on master branch - if: ${{ github.ref == 'refs/heads/master' }} + if: ${{ github.ref == 'refs/heads/fix-building' }} run: exit -1 - name: Install uv @@ -60,6 +60,9 @@ jobs: - name: install git in RHEL 8 container if: contains(matrix.container, 'redhat/ubi8') run: dnf install -y git + + - name: Ensure git is available + run: git --version - name: Install uv uses: astral-sh/setup-uv@v2