From 9de4173f784614141b7676ac290c139e100b6a48 Mon Sep 17 00:00:00 2001 From: Marvin Klerx Date: Tue, 29 Jul 2025 20:43:29 +0200 Subject: [PATCH] chore: fix ci --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 29eaad3..0b361b0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,9 +59,11 @@ jobs: GIT_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Build wheel with Hatch + if: steps.bump.outputs.bump == 'true' run: hatch build - name: Publish to PyPI + if: steps.bump.outputs.bump == 'true' env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}