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

chore: 0.5.6

chore: 0.5.6 #21

Workflow file for this run

name: Release package
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: bun i
- run: bun run build
- run: npm publish --access public
env:
NPM_TOKEN: ${{secrets.DEFINED_SDK_NPM_TOKEN}}