Skip to content

Commit

Permalink
Fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Nov 13, 2023
1 parent 27ced72 commit c7b08a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def commit_and_tag(component: Component, version: str) -> str:
run("git", "pull", "--rebase", "origin", "release", cwd=component["src"])
run("git", "tag", "-a", tag, "-m", commit, cwd=component["src"])
run("git", "push", "origin", "release", cwd=component["src"])
run("git", "push", "origin", "tags", cwd=component["src"])
run("git", "push", "origin", "--tags", cwd=component["src"])

return tag

Expand Down

0 comments on commit c7b08a5

Please sign in to comment.