Skip to content

v0.1.13

v0.1.13 #19

Workflow file for this run

name: Publish
on:
release:
types: [created]
env:
CI: true
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
registry-url: https://registry.npmjs.org
- run: yarn install --no-lockfile
- run: yarn build:packages
- run: yarn lerna publish from-git --yes --no-push --no-git-tag-version
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}