Skip to content

Commit abbf5fe

Browse files
fix: replace VSCE GitHub Action with direct vsce publish command
Use direct vsce publish command instead of the GitHub Action to avoid potential token authorization issues. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5d8f05d commit abbf5fe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
run: pnpm run release
6262

6363
- name: Publish to VS Code Marketplace
64-
uses: lannonbr/vsce-action@4.0.0
65-
with:
66-
args: "publish --packagePath justlang-lsp-*.vsix"
6764
env:
68-
VSCE_TOKEN: ${{ secrets.VSCE_PAT }}
65+
VSCE_PAT: ${{ secrets.VSCE_PAT }}
66+
run: |
67+
echo "Publishing VSIX package to marketplace..."
68+
pnpm exec vsce publish --packagePath justlang-lsp-*.vsix --pat $VSCE_PAT

0 commit comments

Comments
 (0)