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 2fa3310 commit b7fe7a1Copy full SHA for b7fe7a1
.github/workflows/release.yml
@@ -61,6 +61,15 @@ jobs:
61
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
63
64
+ - name: Attach VSX to GitHub release
65
+ if: steps.changesets.outcome == 'success' && steps.changesets.outputs.published == 'true'
66
+ run: |
67
+ npx -y @vscode/vsce package --out "vscode-apollo-$VERSION.vsix"
68
+ gh release upload "v$VERSION" "vscode-apollo-$VERSION.vsix"
69
+ env:
70
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71
+ VERSION: ${{steps.changesets.outputs.publishedPackages[0].version}}
72
+
73
- name: Publish to Open VSX Registry
74
if: steps.changesets.outcome == 'success' && steps.changesets.outputs.published == 'true'
75
uses: HaaLeo/publish-vscode-extension@v1
0 commit comments