Lerna version #1397
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: Lerna version | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_TOKEN_EVE }} | |
fetch-depth: 0 | |
- run: | | |
git config --global user.name 'easyops-eve' | |
git config --global user.email 'easyops-eve@users.noreply.github.com' | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Lerna Version | |
run: npx lerna version --yes --conventional-commits --create-release github | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN_EVE }} |