Skip to content

Commit 2b4c169

Browse files
committed
Fix CD expressions
1 parent 24157e4 commit 2b4c169

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/solid-vite.yml

+2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ on:
66
description: Publish?
77
required: false
88
type: boolean
9+
default: false
910
workflow_dispatch:
1011
inputs:
1112
publish:
1213
description: Publish?
1314
required: false
1415
type: boolean
16+
default: false
1517
defaults:
1618
run:
1719
working-directory: packages/frameworks/solid-vite

.github/workflows/solid.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ jobs:
4242
needs: solid-workflow
4343
uses: ./.github/workflows/solid-vite.yml
4444
with:
45-
publish: ${{ github.event_name == 'release' || inputs.publish }}
45+
publish: ${{ (github.event_name == 'release') || (inputs.publish == true) }}
4646
secrets: inherit

0 commit comments

Comments
 (0)