From fe5ab5ba48bb65ac6e417dc0b69fae6b701d6d6d Mon Sep 17 00:00:00 2001 From: Antoine Gersant Date: Tue, 4 Aug 2020 23:32:36 -0700 Subject: [PATCH] Tagging cleanup --- make_release.ps1 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/make_release.ps1 b/make_release.ps1 index c6ae5a0..e93ef7e 100644 --- a/make_release.ps1 +++ b/make_release.ps1 @@ -4,5 +4,7 @@ Get-ChildItem "Cargo.toml" | ForEach-Object { $script:POLARIS_VERSION = $matches[1] } -git tag -a $POLARIS_VERSION -m "Polaris $POLARIS_VERSION" -git push origin $POLARIS_VERSION +git tag -d $POLARIS_VERSION +git push --delete origin $POLARIS_VERSION +git tag $POLARIS_VERSION +git push --tags