Skip to content

Commit 7e99ccc

Browse files
authored
chore: Make publishing the UI to NPM optional (#3559)
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent f5c48bf commit 7e99ccc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ on:
1313
required: true
1414
default: ""
1515
type: string
16+
publish_ui:
17+
description: 'Publish to NPM?'
18+
required: true
19+
default: true
20+
type: boolean
1621

1722
jobs:
1823

@@ -110,7 +115,7 @@ jobs:
110115
working-directory: ./ui
111116
run: yarn build:lib
112117
- name: Publish UI package
113-
if: github.event.inputs.dry_run == 'false'
118+
if: github.event.inputs.publish_ui == 'true'
114119
working-directory: ./ui
115120
run: npm publish
116121
env:

0 commit comments

Comments
 (0)