File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -231,3 +231,19 @@ jobs:
231
231
- run : vsce publish --packagePath extension.vsix
232
232
env :
233
233
VSCE_PAT : ${{ secrets.VSCE_PAT }} # Set up the VSCE Personal Access Token in GitHub secrets
234
+ publish-to-openvsx :
235
+ name : Publish VSIX to Open VSX
236
+ runs-on : ubuntu-latest
237
+ needs :
238
+ - release-vsix
239
+ - convert_release_to_not_draft
240
+ steps :
241
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4
242
+ - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # ratchet:actions/setup-node@v4
243
+ with :
244
+ node-version-file : " .nvmrc"
245
+ cache : " pnpm"
246
+ - run : npm install -g ovsx
247
+ - run : chmod +x .hacking/scripts/download_extension.sh
248
+ - run : ./.hacking/scripts/download_extension.sh
249
+ - run : ovsx publish extension.vsix -p ${{ secrets.OPEN_VSX_TOKEN }}
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ ratchet_update: ## Updates all the Github workflow versions
56
56
57
57
.PHONY : ratchet_check
58
58
ratchet_check : # # Checks all the Github workflow versions
59
- ratchet check .github/workflows/*
59
+ ratchet lint .github/workflows/*
60
60
61
61
.PHONY : load_vscode_settings
62
62
load_vscode_settings : # # Loads the sample vscode settings
You can’t perform that action at this time.
0 commit comments