Skip to content

ci: cleanup (#3)

ci: cleanup (#3) #3

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 'current'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: lerna run tsc
- run: lerna publish --no-private
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}