Skip to content

Commit b7e05dc

Browse files
Workflow: fix force_update path so version/date are derived; prevents blank release title
1 parent d7ac52f commit b7e05dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
6363
- name: Derive latest version
6464
id: latest
65-
if: steps.git-check.outputs.changes == 'true'
65+
if: steps.git-check.outputs.changes == 'true' || (github.event_name == 'workflow_dispatch' && github.event.inputs.force_update == 'true')
6666
run: |
6767
VERSION=$(jq -r '.versions[0].version' version-history.json)
6868
DATE=$(jq -r '.versions[0].date' version-history.json)

0 commit comments

Comments
 (0)