chore(ci): update bahmutov/npm-install action to v1.10.4 #199
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: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
release: | |
name: release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
- name: Update npm | |
run: | | |
npm install -g npm | |
npm --version | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Install dependencies | |
uses: bahmutov/[email protected] | |
with: | |
useLockFile: false | |
- run: npm audit signatures | |
- name: Release | |
run: npm run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |