Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/release/build/build_scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def infer_scenario_from_environment(cls) -> "BuildScenario":
# Release scenario and the git tag will be used for promotion process only
scenario = BuildScenario.RELEASE
logger.info(f"Build scenario: {scenario} (git_tag: {git_tag})")
elif is_patch and is_evg:
elif is_patch or is_evg:
scenario = BuildScenario.PATCH
logger.info(f"Build scenario: {scenario} (patch_id: {patch_id})")
# TODO: Uncomment the following lines when starting to work on staging builds
Expand Down