Release #112
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: | |
dry_run: | |
description: 'Run semantic-release in "dry run" mode' | |
default: false | |
type: boolean | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
# GH does not allow to limit branches in the workflow_dispatch settings so this here is a safety measure | |
if: ${{ github.ref_name == 'master' || github.ref_name == 'rc' || github.ref_name == 'release-v9' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Validate CommonJS bundle | |
run: yarn validate-cjs | |
- name: Release | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: > | |
yarn semantic-release | |
${{ inputs.dry_run && '--dry-run' || '' }} |