From 6ae72c9e87a18b067baa5c2774b1bde169dd21d9 Mon Sep 17 00:00:00 2001 From: Rishi <93610399+casual-coderr@users.noreply.github.com> Date: Tue, 3 Feb 2026 23:31:17 +0100 Subject: [PATCH] Change default values for catbox_upload and create_release (#695) Since catbox is deafult, the first time users might not see this and might run it and have a failed build. So changing the default value and set to draft release --- .github/workflows/buildapp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/buildapp.yml b/.github/workflows/buildapp.yml index 3debdfd..07e8e00 100644 --- a/.github/workflows/buildapp.yml +++ b/.github/workflows/buildapp.yml @@ -38,12 +38,12 @@ on: type: boolean catbox_upload: description: "Upload iPA to Catbox.moe (URL)" - default: true + default: false required: false type: boolean create_release: description: "Create a draft release (Private)" - default: false + default: true required: false type: boolean