From a8fc8db541dce00e211380e200208d59af22ee88 Mon Sep 17 00:00:00 2001 From: Thomas Flament Date: Mon, 21 Sep 2026 18:57:24 +0200 Subject: [PATCH] Create the GitHub release by default on release dispatch The release job is gated on the create-github-release input, which defaulted to false: a dispatch that left the box unticked built and pushed the images but created no tag and no GitHub release, while still reporting the run as successful. The input is kept, so a build can still be re-run without cutting another release. This also matches the sibling release-warp10.yaml, which already defaults the same input to true. Issue: UTAPI-127 --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e2834e7a..2ff8752a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,7 +12,7 @@ on: type: boolean description: Create a tag and matching Github release. required: false - default: false + default: true jobs: build: