Skip to content

Commit 026cf9e

Browse files
authored
Fix wrong publish conditional (#261)
1 parent 767bd7d commit 026cf9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: npm ci
4242
- name: Bundle UI
4343
run: npm run bundle
44-
- name: Upload static site
44+
- name: Upload bundle
4545
uses: actions/upload-artifact@v4
4646
with:
4747
name: ui-bundle
@@ -74,7 +74,7 @@ jobs:
7474
asset_name: ui-bundle.zip
7575
asset_content_type: application/zip
7676
publish:
77-
if: github.event.inputs.skip_publish != true
77+
if: ${{ github.event.inputs.skip_publish != true }}
7878
runs-on: ubuntu-latest
7979
needs: release
8080
steps:

0 commit comments

Comments
 (0)