Release on refs/heads/main branch #10
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 | |
run-name: Release on ${{ github.ref }} branch | |
on: | |
workflow_dispatch: | |
inputs: | |
github-ref: | |
required: true | |
type: string | |
default: 'main' | |
description: Ref to build | |
version: | |
required: true | |
type: string | |
description: Version to release | |
dry-run: | |
type: boolean | |
description: Dry run | |
skip-changelog-update: | |
type: boolean | |
description: Skip CHANGELOG update | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
name: Release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ inputs.github-ref || github.sha }} | |
- name: Configure GIT identity | |
run: | | |
git config --global user.email "bitdevops@users.noreply.github.com" | |
git config --global user.name "GitHub Actions" | |
- name: Install dependencies | |
uses: ./.github/actions/installDependencies | |
- name: Build | |
run: npm run build | |
- name: Release to NPM | |
run: npm run release | |
env: | |
VERSION: ${{ inputs.version }} | |
NPM_PUBLISH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
DRY_RUN: ${{ inputs.dry-run }} | |
SKIP_CHANGELOG_UPDATE: ${{ inputs.skip-changelog-update }} |