Skip to content

Commit b17ff7a

Browse files
authored
ci: use AZURE_DEVOPS_PAT secret for vsce publish (#120)
The release workflow referenced `secrets.VSCE_PAT`, but the repo only has `AZURE_DEVOPS_PAT` configured. The name mismatch caused the env var to expand to empty, which vsce reported as a PAT verification failure (TF400813) in the v0.0.1 release run.
1 parent b91ba08 commit b17ff7a

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
@@ -85,4 +85,4 @@ jobs:
8585
- name: Publish to Marketplace
8686
run: npx @vscode/vsce publish --packagePath $(find . -iname '*.vsix')
8787
env:
88-
VSCE_PAT: ${{ secrets.VSCE_PAT }}
88+
VSCE_PAT: ${{ secrets.AZURE_DEVOPS_PAT }}

0 commit comments

Comments
 (0)