We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c328bc commit 58a45c2Copy full SHA for 58a45c2
Tools/scripts/ReleaseAutomation/run_release_preparation.py
@@ -18,7 +18,12 @@ def PrepareNetcodePackageForRelease():
18
19
print("\nStep 1: Verifying release conditions...")
20
verifyReleaseConditions(config)
21
-
+ except Exception as e:
22
+ print("\n--- Release conditions were not met ---", file=sys.stderr)
23
+ print(f"Reason: {e}", file=sys.stderr)
24
+ sys.exit(0) # In this case we want the job not to fail because this will be an intended behavior
25
+
26
+ try:
27
print("\nStep 2: Creating release branch...")
28
create_branch_execute_commands_and_push(config)
29
0 commit comments