Release #2
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 | |
on: | |
workflow_dispatch: | |
inputs: | |
release_type: | |
description: 'Release type (major/minor/patch)' | |
required: true | |
default: 'minor' | |
type: choice | |
options: | |
- major | |
- minor | |
- patch | |
jobs: | |
release: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
- name: Install the dependencies | |
run: pnpm install | |
- name: Initialise the NPM config | |
run: pnpm config set //registry.npmjs.org/:_authToken $NPM_TOKEN | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Initialize Git user | |
run: | | |
git config --global user.email "shubpramanik241@gmail.com" | |
git config --global user.name "sourabpramanik" | |
- name: Log git status | |
run: git status | |
- name: Run release major | |
if: github.event.inputs.release_type == 'major' | |
run: pnpm release:major | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run release minor | |
if: github.event.inputs.release_type == 'minor' | |
run: pnpm release:minor | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run release patch | |
if: github.event.inputs.release_type == 'patch' | |
run: pnpm release:patch | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |