Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

0.3.0

0.3.0 #8

Workflow file for this run

name: Publish to npmjs
on:
push:
tags:
- "v*"
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: current
registry-url: https://registry.npmjs.org/
- uses: pnpm/action-setup@v3
with:
version: 8
- run: pnpm i --frozen-lockfile
- run: pnpm build
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}