Skip to content

Commit

Permalink
fix(execute): add random suffix to remote prod execution version
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Feb 28, 2024
1 parent 1d0320e commit 4553adf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyrovelocity/workflows/cli/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def main() -> None:
mode=remote_prod_config,
image=workflow_image,
tag=git_short_sha,
version=f"{repo_name}-{git_branch_truncated}-{git_short_sha}",
version=f"{repo_name}-{git_branch_truncated}-{git_short_sha}-{random_alphanumeric_suffix()}",
)

# define the execution_context store
Expand Down

0 comments on commit 4553adf

Please sign in to comment.