We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea26ddc commit afefa12Copy full SHA for afefa12
.github/workflows/release.yml
@@ -31,7 +31,6 @@ jobs:
31
32
- uses: hynek/build-and-inspect-python-package@v2
33
34
- # Upload to Test PyPI on every commit on main.
35
publish-test-release:
36
permissions:
37
contents: read
@@ -40,7 +39,9 @@ jobs:
40
39
41
name: Publish in-dev package to test.pypi.org
42
environment: publish-test-release
43
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
+ if: |
+ (github.event_name == 'push' && github.ref == 'refs/heads/main') ||
44
+ (github.event_name == 'pull_request')
45
runs-on: ubuntu-latest
46
needs:
47
- pure-python-wheel-and-sdist
0 commit comments