Skip to content

fix: updating package json #7

fix: updating package json

fix: updating package json #7

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.CODEX_SDK_NPM_TOKEN}}