ci: make the dispatch tag input optional
A dispatch with no inputs is the common case (the API cannot pass them), and the resolve step already falls back to the newest v* tag. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
6a1e2aa parent: 6da556b modified
.rickub/workflows/release.yml +2 -2 | @@ -11,8 +11,8 @@ on: | ||
| 11 | 11 | workflow_dispatch: |
| 12 | 12 | inputs: |
| 13 | 13 | tag: |
| 14 | - description: Existing tag to (re)build and attach binaries to | |
| 15 | - required: true | |
| 14 | + description: Existing tag to (re)build and attach binaries to (default: the newest v*) | |
| 15 | + required: false | |
| 16 | 16 | |
| 17 | 17 | permissions: |
| 18 | 18 | contents: write # required — a job is read-only unless it asks |
| @@ -11,8 +11,8 @@ on: | |||
| 11 | workflow_dispatch: | 11 | workflow_dispatch: |
| 12 | inputs: | 12 | inputs: |
| 13 | tag: | 13 | tag: |
| 14 | - description: Existing tag to (re)build and attach binaries to | 14 | + description: Existing tag to (re)build and attach binaries to (default: the newest v*) |
| 15 | - required: true | 15 | + required: false |
| 16 | 16 | ||
| 17 | permissions: | 17 | permissions: |
| 18 | contents: write # required — a job is read-only unless it asks | 18 | contents: write # required — a job is read-only unless it asks |