Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

feat: support callback on swap token changes (#545) #537

feat: support callback on swap token changes (#545)

feat: support callback on swap token changes (#545) #537

Workflow file for this run

name: Build packages - Release
on:
push:
branches:
- beta
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: package.json
- name: Install
run: yarn install --frozen-lockfile --non-interactive
- name: Build
run: yarn run build
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_SEMANTIC_RELEASE_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}