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 cb2fbeb commit 7a25f3eCopy full SHA for 7a25f3e
.github/workflows/ci.yml
@@ -10,6 +10,12 @@ on:
10
release:
11
types:
12
- published
13
+ workflow_dispatch:
14
+ inputs:
15
+ publish_docs:
16
+ description: "Publish Documentation Website"
17
+ required: false
18
+ type: boolean
19
20
jobs:
21
build:
@@ -118,7 +124,7 @@ jobs:
118
124
119
125
publish-pages:
120
126
runs-on: ubuntu-latest
121
- if: github.event_name == 'release'
127
+ if: github.event_name == 'release' || github.event.inputs.publish_docs == true
122
128
needs:
123
129
- build
130
permissions:
0 commit comments