Skip to content

Refactor MASBalance component to use balance from account store and s… #7

Refactor MASBalance component to use balance from account store and s…

Refactor MASBalance component to use balance from account store and s… #7

Workflow file for this run

name: Release
on:
push:
tags:
- v*
jobs:
test:
uses: ./.github/workflows/tests.yml
build:
uses: ./.github/workflows/build.yml
publish-npm:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
registry-url: https://registry.npmjs.org
- run: |
npm pkg delete scripts.prepare
npm ci
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}