From 14ecc0a72918ac1ba591e8c44506e97486b8e6f5 Mon Sep 17 00:00:00 2001 From: Kevin F Date: Thu, 25 Jan 2024 15:56:53 +0100 Subject: [PATCH] Release v1.0.0-alpha.03 :bookmark: --- build/Build.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Build.fs b/build/Build.fs index 707400d8..cef25e76 100644 --- a/build/Build.fs +++ b/build/Build.fs @@ -260,7 +260,7 @@ module Release = let CreatePrereleaseTag() = if promptYesNo (sprintf "Tagging branch with %s OK?" ProjectInfo.prereleaseTag ) then - Git.Branches.tag "" ProjectInfo.prereleaseTag + run git ["tag"; "-f"; ProjectInfo.prereleaseTag; ] __SOURCE_DIRECTORY__ Git.Branches.pushTag "" ProjectInfo.projectRepo ProjectInfo.prereleaseTag else failwith "aborted"