Skip to content

Commit 50985fe

Browse files
committed
Fix release
Signed-off-by: Bernát Gábor <[email protected]>
1 parent e6550b8 commit 50985fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def main(version_str: str) -> None:
2727
finally:
2828
print("checkout main to new release and delete release branch")
2929
repo.heads.main.checkout()
30-
repo.delete_head(release_branch)
30+
repo.delete_head(release_branch, force=True)
3131
upstream.fetch()
3232
repo.git.reset("--hard upstream/main")
3333
print("All done! ✨ 🍰 ✨")

0 commit comments

Comments
 (0)