Add GitLab Application ID env #35
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 publishes the | |
| # version bumps to main, which triggers web-publish.yml (web) and lets you run | |
| # Extension · Publish (extension). 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 }} |