fix: remove duplicate v from core release name #11
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, beta] | |
jobs: | |
release: | |
runs-on: "ubuntu-latest" | |
permissions: | |
contents: "write" | |
issues: "write" | |
pull-requests: "write" | |
id-token: "write" | |
steps: | |
- uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- uses: "actions/setup-node@v4" | |
with: | |
node-version: 20 | |
cache: "npm" | |
- run: "npm ci" | |
- run: "npm run build" | |
- name: "Verify the integrity of provenance attestations and registry signatures for installed dependencies" | |
run: "npm audit signatures" | |
- name: "Release" | |
run: "npm run release" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |