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
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,19 @@ on:
inputs:
tag:
type: string
required: true
description: "Tag to publish (e.g. v1.20.1)"
required: false
default: ""
description: "Tag to re-publish (existing tag). Omit + set from-head to release HEAD."
from-head:
type: string
required: false
default: ""
description: "'true' to release/retry the current HEAD - the CI creates the tag (issue #35)."
bump:
type: string
required: false
default: "auto"
description: "Version resolution for from-head: auto | patch | minor (forced - release even with no release-worthy commit) | X.Y.Z (exact version)."

permissions:
contents: write
Expand All @@ -38,4 +49,6 @@ jobs:
with:
publish-target: oss
tag: ${{ inputs.tag || '' }}
from-head: ${{ inputs.from-head || '' }}
bump: ${{ inputs.bump || 'auto' }}
secrets: inherit
Loading