Skip to content

Commit 4e5ac53

Browse files
authored
🤖 fix: guard VSCE publish step (#656)
## Summary - wrap the VS Code Marketplace publish step condition in a GitHub Actions expression so the parser can resolve the secrets context ## Testing - make typecheck _Generated with _
1 parent 5d553f9 commit 4e5ac53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
--clobber
7878
7979
- name: Publish to VS Code Marketplace
80-
if: secrets.VSCE_PAT != ''
80+
if: ${{ secrets.VSCE_PAT != '' }}
8181
working-directory: vscode
8282
env:
8383
VSCE_PAT: ${{ secrets.VSCE_PAT }}

0 commit comments

Comments
 (0)