There was an error while loading. Please reload this page.
1 parent f5c48bf commit 7e99cccCopy full SHA for 7e99ccc
1 file changed
.github/workflows/release.yml
@@ -13,6 +13,11 @@ on:
13
required: true
14
default: ""
15
type: string
16
+ publish_ui:
17
+ description: 'Publish to NPM?'
18
+ required: true
19
+ default: true
20
+ type: boolean
21
22
jobs:
23
@@ -110,7 +115,7 @@ jobs:
110
115
working-directory: ./ui
111
116
run: yarn build:lib
112
117
- name: Publish UI package
113
- if: github.event.inputs.dry_run == 'false'
118
+ if: github.event.inputs.publish_ui == 'true'
114
119
120
run: npm publish
121
env:
0 commit comments