Skip to content

ci: checkout sha

ci: checkout sha #5

Workflow file for this run

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