chore: release v2.10.0 — Claude Code full compatibility #29
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' # Triggers on tags like v1.0.0 | |
| permissions: | |
| contents: write | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| cache: 'npm' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Package Extension | |
| run: npm run package | |
| - name: Publish to VS Code Marketplace | |
| run: npx @vscode/vsce publish -p ${{ secrets.VSCE_PAT }} | |
| continue-on-error: true | |
| - name: Publish to Open VSX Registry | |
| run: npx ovsx publish -p ${{ secrets.OVSX_PAT }} | |
| continue-on-error: true | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: "*.vsix" | |
| generate_release_notes: true |