File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 8282 merge-multiple : true
8383
8484 - name : Publish to VS Code Marketplace
85- run : npx vsce publish --packagePath /tmp/*.vsix --pat ${{ secrets.VSIX_TOKEN }} --githubBranch master
85+ run : | # TODO: Actually publish to the marketplace. For now, only verify that the personal access token will work
86+ npx vsce verify-pat --pat ${{ secrets.VSIX_TOKEN }}
87+ echo npx vsce publish --packagePath /tmp/*.vsix --pat ${{ secrets.VSIX_TOKEN }} --githubBranch master
8688
8789 publish-to-open-vsx :
8890 runs-on : ubuntu-latest
@@ -115,7 +117,9 @@ jobs:
115117 merge-multiple : true
116118
117119 - name : Publish to Open VSX
118- run : npx ovsx publish /tmp/*.vsix --pat ${{ secrets.OPEN_VSX_TOKEN }}
120+ run : | # TODO: Actually publish to open-vsx. For now, only verify that the personal access token will work
121+ npx ovsx verify-pat --pat ${{ secrets.OPEN_VSX_TOKEN }}
122+ echo npx ovsx publish /tmp/*.vsix --pat ${{ secrets.OPEN_VSX_TOKEN }}
119123
120124 bump-version :
121125 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments