From 558349b5a529dac686882bb10497e1f89f15c48c Mon Sep 17 00:00:00 2001 From: Christophe Haen Date: Thu, 7 May 2026 10:23:10 +0200 Subject: [PATCH] fix: setup pixi in the deployment ci --- .github/workflows/deployment.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 99454e494..4d4c9fa35 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -220,15 +220,13 @@ jobs: echo "current_chart_version=$CURRENT_CHART_VERSION" >> $GITHUB_OUTPUT echo "new_chart_version=$NEW_CHART_VERSION" >> $GITHUB_OUTPUT echo "diracx_version=$VERSION" >> $GITHUB_OUTPUT - - - name: Install pre-commit - run: | - pip install pre-commit - + - uses: prefix-dev/setup-pixi@a0af7a228712d6121d37aba47adf55c1332c9c2e # v0.9.4 + with: + working-directory: ./diracx-charts - name: Run pre-commit to update README run: | cd diracx-charts - pre-commit run --all-files || true + pixi run pre-commit run --all-files || true - name: Commit and push changes if: success()