Skip to content

feat: add Codex tidy support — remove stale environment_context titles #33

feat: add Codex tidy support — remove stale environment_context titles

feat: add Codex tidy support — remove stale environment_context titles #33

Workflow file for this run

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 }}