chore: update GitHub Actions to use actions/checkout@v6 and actions/s… #140
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: | |
| branches: | |
| - main | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| release: | |
| if: github.repository == 'vtbag/inspection-chamber' | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| name: Release | |
| runs-on: ubuntu-latest | |
| env: | |
| npm_config_legacy_peer_deps: "true" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - run: npm ci | |
| - name: Create Release Pull Request | |
| uses: changesets/action@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |