File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -84,12 +84,24 @@ jobs:
8484 run : |
8585 npm install @vscode/vsce
8686
87+ - name : Bump VS Code extension version
88+ working-directory : ./flowquery-vscode
89+ run : |
90+ npm version ${{ steps.version.outputs.version }} --no-git-tag-version
91+
8792 - name : Package VS Code extension
8893 working-directory : ./flowquery-vscode
8994 run : |
9095 npx @vscode/vsce package
9196 ls -la *.vsix
9297
98+ - name : Publish VS Code extension to Marketplace
99+ working-directory : ./flowquery-vscode
100+ run : |
101+ npx @vscode/vsce publish --pat "$VSCE_PAT"
102+ env :
103+ VSCE_PAT : ${{ secrets.VSCE_PAT }}
104+
93105 - name : Create GitHub Release
94106 uses : softprops/action-gh-release@v1
95107 with :
Original file line number Diff line number Diff line change 33 *
44 * Main entry point for the FlowQuery command-line interface.
55 *
6- * Build: 2026-02-21
6+ * Build: 2026-02-22
77 *
88 * @packageDocumentation
99 */
You can’t perform that action at this time.
0 commit comments