ci: switch release workflow to node 22 #424
This file contains 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, next] | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
if: github.repository == 'igordanchenko/react-photo-album' | |
permissions: | |
contents: write | |
id-token: write | |
issues: write | |
discussions: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: npx ci | |
- name: Install semantic-release extra plugins | |
run: npm install --save-dev @semantic-release/changelog @semantic-release/github | |
- name: Build, Test, Lint | |
run: npm run ci | |
- name: Cleanup | |
run: npm pkg delete scripts devDependencies | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release |