Skip to content

Merge branch 'develop' of github.com:airswap/airswap-protocols into beta #43

Merge branch 'develop' of github.com:airswap/airswap-protocols into beta

Merge branch 'develop' of github.com:airswap/airswap-protocols into beta #43

Workflow file for this run

name: Publish Beta
on:
push:
branches:
- beta
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install
- run: lerna run compile --concurrency=1
- run: lerna publish from-package --yes --dist-tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}