We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c96d04 commit 31673acCopy full SHA for 31673ac
1 file changed
.github/workflows/pypi-release.yml
@@ -3,6 +3,8 @@ name: Build and Publish Python Wheels to PyPI
3
on:
4
push:
5
branches: ["*"]
6
+ pull_request:
7
+ branches: ["*"]
8
release:
9
types: [published]
10
workflow_dispatch: # Allow manual triggering
@@ -135,7 +137,7 @@ jobs:
135
137
name: Publish to TestPyPI
136
138
needs: [build-wheels, build-sdist]
139
runs-on: ubuntu-latest
- if: github.event_name == 'workflow_dispatch'
140
+ if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
141
environment:
142
name: testpypi
143
url: https://test.pypi.org/p/libcachesim
0 commit comments