Skip to content

Merge pull request #63 from BlackTiger007/next #72

Merge pull request #63 from BlackTiger007/next

Merge pull request #63 from BlackTiger007/next #72

Workflow file for this run

name: Release
on:
push:
branches:
- main
- next
permissions:
contents: read
jobs:
release:
name: Release
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24.11.1
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true
run: npx semantic-release