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 b70ae92 commit 355ddb7Copy full SHA for 355ddb7
.github/workflows/pyhton.build_deploy.yml
@@ -1,4 +1,5 @@
1
on:
2
+ workflow_dispatch:
3
push:
4
pull_request:
5
branches:
@@ -141,7 +142,7 @@ jobs:
141
142
with:
143
path: python-wrapper/docs/_build/html
144
deploy_pages:
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
145
+ if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) || github.event_name == 'workflow_dispatch'
146
runs-on: "ubuntu-22.04"
147
needs: build_pages
148
permissions:
@@ -237,4 +238,4 @@ jobs:
237
238
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
239
# upload sigstore-produced signatures and certificates from dist
240
run: |
- gh release upload '${{ github.ref_name }}' dist/*.sigstore.json --repo '${{ github.repository }}'
241
+ gh release upload '${{ github.ref_name }}' dist/*.sigstore.json --repo '${{ github.repository }}'
0 commit comments