Skip to content

docs: refactor pipeline section to a table and tighten status prose #9

docs: refactor pipeline section to a table and tighten status prose

docs: refactor pipeline section to a table and tighten status prose #9

Workflow file for this run

name: Release
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write # tag + GitHub Release + commit version bump back to main
issues: write # comment on released issues
pull-requests: write # comment on released PRs
id-token: write # npm OIDC / trusted publishing (no NPM_TOKEN)
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v6
with:
node-version: 24
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm test
- name: Run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release