Skip to content

2.0.0-alpha2

2.0.0-alpha2 #2

Workflow file for this run

name: CD
on:
release:
types: [released, prereleased]
permissions:
contents: read
id-token: write # Required to authenticate with npm
# Required for the docs deployment job
actions: read
pages: write
jobs:
docs:
uses: ./.github/workflows/docs.yml
secrets: inherit
with:
deploy: true
publish:
environment: npm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: lts
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm run build
- run: npm publish