2 parents 7d5c16e + 495d865 commit fbcbe26Copy full SHA for fbcbe26
1 file changed
.github/workflows/docs.yml
@@ -4,6 +4,7 @@ on:
4
workflow_run:
5
workflows: ["Publish to PyPI"]
6
types: [completed]
7
+ workflow_dispatch:
8
9
permissions:
10
contents: read
@@ -17,7 +18,7 @@ concurrency:
17
18
jobs:
19
build:
20
runs-on: ubuntu-latest
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
21
+ if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
22
steps:
23
- uses: actions/checkout@v4
24
0 commit comments