From f1c5c78b27b6f9510ffab2d9dba522472ea67916 Mon Sep 17 00:00:00 2001 From: Scott Beddall <45376673+scbedd@users.noreply.github.com> Date: Wed, 4 Jan 2023 14:31:17 -0800 Subject: [PATCH] Disable auto gpg signing (#5047) * ensure conditions all work properly in the case of a previous error * small adjustment to address Pauls issue with the auto signing --- tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs b/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs index c2b6deb87cc..91860d83eb7 100644 --- a/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs +++ b/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs @@ -123,7 +123,7 @@ public async Task Push(string pathToAssetsJson) { } SetOrigin(config); - GitHandler.Run($"tag {generatedTagName}", config); + GitHandler.Run($"tag -c tag.gpgsign=false {generatedTagName}", config); GitHandler.Run($"push origin {generatedTagName}", config); HideOrigin(config); }