Release new version #628
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |