Skip to content

Merge pull request #337 from bob-collective/feat/get-balance #36

Merge pull request #337 from bob-collective/feat/get-balance

Merge pull request #337 from bob-collective/feat/get-balance #36

Workflow file for this run

---
name: SDK NPM Publish
on:
push:
tags:
- "*"
jobs:
publish:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./sdk
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
always-auth: true
- run: npm ci
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}