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
13 changes: 11 additions & 2 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,18 @@ on:
- 'v[0-9]+.[0-9]+.[0-9]+' # Matches tags like v1.2.3
workflow_dispatch:
inputs:
version:
description: 'Version number in major.minor.patch format'
bump:
description: 'Version bump; the new version is inferred from the latest release tag'
required: true
type: choice
options:
- patch
- minor
- major
default: patch
version:
description: 'Explicit version override in major.minor.patch format; takes precedence over bump'
required: false
type: string

jobs:
Expand Down
Loading