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 040ab9f commit 9795002Copy full SHA for 9795002
.github/workflows/CI.yml
@@ -16,6 +16,13 @@ env:
16
- .editorconfig
17
- docs/**
18
pull_request: null
19
+ workflow_dispatch:
20
+ inputs:
21
+ publish:
22
+ description: 'Publish the npm package.'
23
+ required: true
24
+ type: boolean
25
+ default: false
26
jobs:
27
build:
28
if: '!contains(github.event.head_commit.message, ''skip ci'')'
@@ -189,6 +196,7 @@ jobs:
189
196
- name: Test bindings
190
197
run: yarn build:ts && yarn test
191
198
publish:
199
+ if: ${{github.event.inputs.publish}}
192
200
name: Publish
193
201
runs-on: ubuntu-latest
194
202
needs:
0 commit comments