Skip to content

Commit

Permalink
Branch was auto-updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
sa-github-api authored Aug 19, 2024
2 parents ed48f61 + 7a1c772 commit 3b64466
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion release-controller/git_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def push_release_tags(repo: GitRepo, release: Release):
cwd=repo.dir,
)
if (
not subprocess.check_output(
subprocess.check_output(
[
"git",
"ls-remote",
Expand All @@ -298,13 +298,15 @@ def push_release_tags(repo: GitRepo, release: Release):
)
.decode("utf-8")
.strip()
.split(" ")[0] != v.version
):
subprocess.check_call(
[
"git",
"push",
"origin",
tag,
"-f",
],
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
Expand Down

0 comments on commit 3b64466

Please sign in to comment.