v0.8.15: fix Codex session titles using session_index threadName #51
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: Build and Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - run: npm ci | |
| - run: npm run build | |
| - name: Package vsix | |
| run: npx vsce package --allow-missing-repository | |
| - name: Create GitHub Release with vsix | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: '*.vsix' | |
| generate_release_notes: true | |
| - name: Publish to VS Code Marketplace | |
| run: npx vsce publish --allow-missing-repository -p ${{ secrets.VSCE_PAT }} | |
| continue-on-error: true | |
| - name: Create Open VSX namespace (if needed) | |
| run: npx ovsx create-namespace myoontyee -p ${{ secrets.OVSX_PAT }} || true | |
| - name: Publish to Open VSX (for Cursor) | |
| run: npx ovsx publish *.vsix -p ${{ secrets.OVSX_PAT }} |