Skip to content

Commit 05b5e9f

Browse files
committed
[HHA] NodeJS 20 for publishing VSCode extension workflow
1 parent 59e1b0c commit 05b5e9f

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/publish-vscode-extension.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,19 @@ jobs:
2727
runs-on: ubuntu-latest
2828
name: Publish '${{ inputs.extension-name }}-${{ inputs.version }}-${{ inputs.postfix }}.vsix'
2929
steps:
30+
- name: Use Node.js 20.x
31+
uses: actions/setup-node@v3
32+
with:
33+
node-version: 20.x
3034
- name: Download Release VSIX
3135
id: download-release
3236
run: |
3337
wget $DOWNLOAD_URL_ROOT/$URL_PATH/$VSIX_FILE
34-
- name: Publish to VSCode Marketplace
35-
id: publish-vsce
36-
run: |
37-
npm install --global @vscode/vsce
38-
vsce publish -p ${{ secrets.VSCE_PUBLISH_TOKEN }} --packagePath $VSIX_FILE
38+
# - name: Publish to VSCode Marketplace
39+
# id: publish-vsce
40+
# run: |
41+
# npm install --global @vscode/vsce
42+
# vsce publish -p ${{ secrets.VSCE_PUBLISH_TOKEN }} --packagePath $VSIX_FILE
3943
- name: Publish to Eclipse Open VSX
4044
id: publish-ovsx
4145
run: |

0 commit comments

Comments
 (0)