Skip to content

ci: split publish and version #1

ci: split publish and version

ci: split publish and version #1

Workflow file for this run

name: Lerna publish
on:
push:
branches: [ main ]
jobs:
publish:
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, 'chore(release): bump version')"
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GH_TOKEN }}
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm ci
- run: npm run build
- run: npm run lerna publish from-package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}