Skip to content

Merge branch 'main' into main-capacitor2 #2

Merge branch 'main' into main-capacitor2

Merge branch 'main' into main-capacitor2 #2

name: Publish package
on:
push
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn
- run: yarn lint
- run: yarn build
- run: yarn lerna:publish from-package --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}