Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ on:
- patch
default: minor
required: true
SKIP_NPM:
description: 'Skip publishing to NPM?'
type: boolean
default: false
required: false

jobs:
release:
Expand Down Expand Up @@ -47,4 +52,4 @@ jobs:
NPM_TOKEN: ${{ secrets.RELEASE_NPM_TOKEN }}
run: |
npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
npm run release --increment "${{ github.event.inputs.VERSION_BUMP }}" -V
npm run release --increment "${{ github.event.inputs.VERSION_BUMP }}" ${{ github.event.inputs.SKIP_NPM == true && '--no-npm' || '' }} -V