Skip to content

release

release #48

Workflow file for this run

name: release
on: workflow_dispatch
permissions:
contents: read
concurrency:
group: release
cancel-in-progress: false
jobs:
checks:
permissions:
contents: read
uses: ./.github/workflows/checks.yml
secrets: inherit
release:
needs: checks
runs-on: ubuntu-latest
environment: npm-publish
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
registry-url: 'https://registry.npmjs.org'
- name: git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- run: npm install --ignore-scripts
- run: npm audit signatures
- run: npm run release -- --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}