Skip to content

chore: release

chore: release #22

Workflow file for this run

---
name: Deploy
on:
push:
branches:
- release
jobs:
deploy:
runs-on: ubuntu-22.04
timeout-minutes: 10
env:
CI: 'true'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- run: make install
- name: Authenticate npm
run: ./utils/ci/npm-auth.sh
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Release
run: npx lerna publish from-git --yes
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Merge release
run: ./utils/ci/sync-release.sh
if: success()