Refresh VS Code Marketplace listing and release process #50
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 | |
| # Opens/updates a "Version Packages" PR that applies changesets: bumps each | |
| # package's version and writes its CHANGELOG. Merging that PR lands the version | |
| # bumps on main, triggers web-publish.yml for the web app, and makes the extension | |
| # ready for the manual Marketplace process in docs/vscode-marketplace-release.md. | |
| # We never run `changeset publish`. Neither package is on npm. | |
| on: | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: release | |
| cancel-in-progress: false | |
| jobs: | |
| version: | |
| name: Version Packages PR | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: ".nvmrc" | |
| - uses: pnpm/action-setup@v6 | |
| with: | |
| cache: true | |
| - run: pnpm install --frozen-lockfile | |
| - uses: changesets/action@v1 | |
| with: | |
| version: pnpm version-packages | |
| commit: "chore: version packages" | |
| title: "Version Packages (joint release)" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |