Skip to content

Commit ec38c86

Browse files
committed
fix: correct environment variable reference for VSCE_PAT in release workflow
1 parent 6ccc381 commit ec38c86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
files: "*.vsix"
3939

4040
- name: Publish to VS Code Marketplace
41-
if: ${{ secrets.VSCE_PAT != '' }}
41+
if: env.VSCE_PAT != ''
4242
run: npx vsce publish --packagePath kanbancode-${{ github.event.release.tag_name }}.vsix
4343
env:
4444
VSCE_PAT: ${{ secrets.VSCE_PAT }}

0 commit comments

Comments
 (0)