Skip to content

Release new version #628

Release new version

Release new version #628

Workflow file for this run

name: Release new version
on: workflow_dispatch
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
registry-url: https://registry.npmjs.org/
- run: yarn
- run: yarn lerna run lint --since
- run: yarn lerna run build --since
- run: yarn lerna run test --since
- name: Set up git credentials
run: |
git config --global user.name 'ci'
git config --global user.email '[email protected]'
- run: yarn lerna version --conventional-commits -y
- run: yarn lerna publish from-package