Bump package version #7
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: Bump package version | |
on: | |
workflow_dispatch: | |
inputs: | |
dry-run: | |
type: boolean | |
description: Only output new version number, no actual change. | |
required: false | |
rule: | |
type: choice | |
description: Version bump level | |
required: true | |
options: | |
- major | |
- minor | |
- patch | |
- premajor | |
- preminor | |
- prepatch | |
- prerelease | |
- "prerelease --next-phase" | |
jobs: | |
Bump: | |
name: Bump version number | |
uses: AstarVienna/DevOps/.github/workflows/bump.yml@main | |
secrets: inherit | |
with: | |
dry-run: ${{ inputs.dry-run }} | |
rule: ${{ inputs.rule }} |