Skip to content

test publish

test publish #166

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@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- run: yarn install --immutable
- run: yarn build
- run: npm pack
- name: Publish release candidate
run: npm publish --access=public --tag next