Skip to content

Commit 42819fc

Browse files
fix condition
1 parent 91e5fba commit 42819fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: ./.github/actions/set-version
3838

3939
- name: Publish to VS Marketplace
40-
if: ${{ inputs.publish_vscode_marketplace != false }}
40+
if: ${{ inputs.publish_vscode_marketplace == null || inputs.publish_vscode_marketplace }}
4141
run: make publish-marketplace
4242
env:
4343
VERSION: ${{ env.VERSION }}
@@ -47,7 +47,7 @@ jobs:
4747
ANALYTICS_API_URL: https://analytics.localstack.cloud/v1/events
4848

4949
- name: Publish to Open VSX
50-
if: ${{ inputs.publish_ovsx != false }}
50+
if: ${{ inputs.publish_ovsx == null || inputs.publish_ovsx }}
5151
run: make publish-ovsx
5252
env:
5353
VERSION: ${{ env.VERSION }}

0 commit comments

Comments
 (0)