We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a41494 commit ebb8677Copy full SHA for ebb8677
1 file changed
.github/workflows/release.yml
@@ -58,8 +58,14 @@ jobs:
58
- uses: actions/checkout@v2
59
- run: node $SCRIPT_DIR/enableWebpack.js
60
- run: yarn install
61
- - uses: lannonbr/vsce-action@master
+ - name: Publish to Open VSX Registry
62
+ uses: HaaLeo/publish-vscode-extension@v1
63
+ id: publishToOpenVSX
64
+ with:
65
+ pat: ${{ secrets.OPEN_VSX_TOKEN }}
66
+ - name: Publish to Visual Studio Marketplace
67
68
with:
- args: "publish -p $VSCE_TOKEN"
- env:
- VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
69
+ pat: ${{ secrets.VSCE_TOKEN }}
70
+ registryUrl: https://marketplace.visualstudio.com
71
+ extensionFile: ${{ steps.publishToOpenVSX.outputs.vsixPath }}
0 commit comments