From f770904d52f9c43d926f279c392eb50226c7b674 Mon Sep 17 00:00:00 2001 From: renaud gaudin Date: Tue, 28 Nov 2023 08:24:33 +0000 Subject: [PATCH] fixup! only upload to Apple upon releases --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index af315f4db..88c19fb7d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -59,7 +59,7 @@ jobs: upload_folder = f"nightly/{version}" export_method = "developer-id" if os.getenv("UPLOAD_TO") == "dmg" else "app-store" - upload_to_apple = export_method == "dmg" or (is_release and export_method == "app-store") + upload_to_apple = export_method == "developer-id" or (is_release and export_method == "app-store") extra_xcode = os.getenv("EXTRA_XCODEBUILD", "") if os.getenv("PLATFORM") == "iOS":