Release package #15
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 package | |
on: | |
workflow_dispatch: | |
inputs: | |
release-type: | |
description: 'Release type (one of): patch, minor, major, prepatch, preminor, premajor, prerelease' | |
required: true | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout project repository | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Setup Node.js environment | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
registry-url: https://registry.npmjs.org/ | |
node-version: '20' | |
# Install dependencies (required by Run tests step) | |
- name: Install dependencies | |
run: yarn install | |
- name: Build packages | |
run: yarn build | |
# Tests | |
- name: Run tests | |
run: yarn test | |
# Configure Git | |
- name: Git configuration | |
run: | | |
git config --global user.email "andres.ledesma@smartly.io" | |
git config --global user.name "Andres Ledesma" | |
# Publish version to public repository | |
- name: Publish | |
run: lerna publish ${{ github.event.inputs.release-type }} --include-private --force-publish --loglevel verbose --yes | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_ACCESS_TOKEN }} | |
# Push repository changes | |
- name: Push changes to repository | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git push origin && git push --tags | |