Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

Commit 8983f1d

Browse files
committed
♻️ chore: update actions/checkout and actions/setup-node to v6
1 parent 35f692a commit 8983f1d

1 file changed

Lines changed: 4 additions & 12 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Setup Node.js
20-
uses: actions/setup-node@v5
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: 'lts/*'
2323
cache: 'npm'
@@ -64,14 +64,6 @@ jobs:
6464
tag: ${{ steps.get_version.outputs.TAG }}
6565
token: ${{ secrets.GITHUB_TOKEN }}
6666

67-
# Publishing to marketplaces requires secrets to be configured
68-
# VSCE_PAT and OVSX_PAT need to be added as repository secrets
69-
# Uncomment and configure these steps when ready to publish
67+
- name: Publish to VS Code Marketplace
68+
run: npx @vscode/vsce publish --packagePath *.vsix -p ${{ secrets.VSCE_PAT }}
7069

71-
# - name: Publish to VS Code Marketplace
72-
# run: npx @vscode/vsce publish --pat ${{ secrets.VSCE_PAT }}
73-
# if: secrets.VSCE_PAT != null
74-
75-
# - name: Publish to Open VSX Registry
76-
# run: npx ovsx publish *.vsix --pat ${{ secrets.OVSX_PAT }}
77-
# if: secrets.OVSX_PAT != null

0 commit comments

Comments
 (0)