Skip to content

chore(ci): deploy to npm #19

chore(ci): deploy to npm

chore(ci): deploy to npm #19

name: Release
on:
push:
jobs:
publish-github-registry:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: 'https://registry.npmjs.org'
- run: yarn install
- run: yarn push
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
permissions:
contents: read
packages: write