Skip to content

Release

Release #2

Workflow file for this run

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 }}