Skip to content

chore: release v0.4.0 #7

chore: release v0.4.0

chore: release v0.4.0 #7

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run build
- run: bun publish --access=public
env:
NPM_CONFIG_TOKEN: ${{ secrets.NPM_TOKEN }}