We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b60cc0a commit fb47f11Copy full SHA for fb47f11
.github/workflows/build-and-publish-package.yml
@@ -29,7 +29,8 @@ jobs:
29
30
publish-to-testpypi:
31
runs-on: ubuntu-latest
32
- if: github.event_name == 'push' && github.ref == 'refs/heads/main' # only publish to test.PyPI on pushes to main
+ if: startsWith(github.ref, 'refs/tags/') # only publish to test.PyPI on tag pushes (for the time being)
33
+ # if: github.event_name == 'push' && github.ref == 'refs/heads/main' # only publish to test.PyPI on pushes to main
34
35
name: Publish LNT to TestPyPI
36
needs: [build]
0 commit comments