Release new version #632
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 | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
registry-url: https://registry.npmjs.org/ | |
- name: Install | |
run: yarn | |
- name: Lint | |
run: yarn lerna run lint --since | |
- name: Build | |
run: yarn lerna run build --since | |
- name: Test | |
run: yarn lerna run test --since | |
- name: Set up git credentials | |
run: | | |
git config --global user.name 'ci' | |
git config --global user.email 'deploy@monday.com' | |
- name: Generate new versions | |
run: yarn lerna version --conventional-commits -y | |
- run: yarn config set registry https://registry.npmjs.org/ | |
- name: Setup .npmrc for publish | |
run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > .npmrc | |
- name: Publish to npm | |
run: yarn lerna publish from-package -y | |
- name: Remove .npmrc | |
if: success() || failure() | |
run: rm .npmrc |