We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 182f671 commit 191cd36Copy full SHA for 191cd36
.github/workflows/ci.yml
@@ -7,6 +7,7 @@ on:
7
branches: [ main ]
8
release:
9
types: [ published ]
10
+ workflow_dispatch:
11
12
jobs:
13
lint-and-type-check:
@@ -483,7 +484,7 @@ jobs:
483
484
test-pypi-publish:
485
name: Test PyPI Publishing (TestPyPI)
486
runs-on: ubuntu-latest
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
487
+ if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch'
488
needs: [lint-and-type-check, test, build, integration-tests]
489
environment: test-pypi
490
0 commit comments