Skip to content

Commit

Permalink
fixup! only upload to Apple upon releases
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Nov 28, 2023
1 parent 4b0eacf commit f770904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit f770904

Please sign in to comment.