From aab7dbceb25ea8a9266b4004937d9404c0bccb63 Mon Sep 17 00:00:00 2001 From: Luke Baumann Date: Wed, 8 Oct 2025 23:29:20 +0000 Subject: [PATCH] Fixed syntax error in github action --- .github/workflows/build_wheel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index 3a87a0f..7a1ebf1 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -79,7 +79,7 @@ jobs: publish-to-pypi: name: Publish Python distribution to PyPI - if: !inputs.testpypi && startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes + if: "!inputs.testpypi && startsWith(github.ref, 'refs/tags/')" # only publish to PyPI on tag pushes needs: - build runs-on: ubuntu-latest