We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24157e4 commit 2b4c169Copy full SHA for 2b4c169
.github/workflows/solid-vite.yml
@@ -6,12 +6,14 @@ on:
6
description: Publish?
7
required: false
8
type: boolean
9
+ default: false
10
workflow_dispatch:
11
inputs:
12
publish:
13
14
15
16
17
defaults:
18
run:
19
working-directory: packages/frameworks/solid-vite
.github/workflows/solid.yml
@@ -42,5 +42,5 @@ jobs:
42
needs: solid-workflow
43
uses: ./.github/workflows/solid-vite.yml
44
with:
45
- publish: ${{ github.event_name == 'release' || inputs.publish }}
+ publish: ${{ (github.event_name == 'release') || (inputs.publish == true) }}
46
secrets: inherit
0 commit comments