diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index cbf02c1..a73c27b 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -30,7 +30,7 @@ jobs: publish-to-pypi-tagUpdate: name: >- Publish Python 🐍 distribution 📦 to PyPI - if: startsWith(github.event.ref, 'refs/tags/prod-*') # only publish to PyPI on tag pushes Ex. prod-v1.0.0-alpha.10 + if: startsWith(github.event.ref, 'refs/tags/') # only publish to PyPI on tag pushes Ex. prod-v1.0.0-alpha.10 needs: - build runs-on: ubuntu-latest @@ -94,7 +94,7 @@ jobs: publish-to-testpypi: name: Publish Python 🐍 distribution 📦 to TestPyPI - if: startsWith(github.event.ref, 'refs/tags/test-*') # only publish to Test PyPI on tag pushes Ex. test-v1.0.0-alpha.10 + #if: startsWith(github.ref, 'refs/tags/') # only publish to Test PyPI on tag pushes Ex. test-v1.0.0-alpha.10 needs: - build runs-on: ubuntu-latest