Skip to content

fix: publish

fix: publish #167

Workflow file for this run

name: Publish to NPM
on:
push:
branches:
- test-publish
permissions:
id-token: write
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: corepack enable
- uses: actions/setup-node@v6
with:
node-version: 24
cache: "yarn"
- run: yarn install --immutable
- run: yarn build
- run: npm pack
- name: Publish release candidate
run: npm publish --access=public --tag next