We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91e5fba commit 42819fcCopy full SHA for 42819fc
.github/workflows/publish.yml
@@ -37,7 +37,7 @@ jobs:
37
uses: ./.github/actions/set-version
38
39
- name: Publish to VS Marketplace
40
- if: ${{ inputs.publish_vscode_marketplace != false }}
+ if: ${{ inputs.publish_vscode_marketplace == null || inputs.publish_vscode_marketplace }}
41
run: make publish-marketplace
42
env:
43
VERSION: ${{ env.VERSION }}
@@ -47,7 +47,7 @@ jobs:
47
ANALYTICS_API_URL: https://analytics.localstack.cloud/v1/events
48
49
- name: Publish to Open VSX
50
- if: ${{ inputs.publish_ovsx != false }}
+ if: ${{ inputs.publish_ovsx == null || inputs.publish_ovsx }}
51
run: make publish-ovsx
52
53
0 commit comments