Skip to content

Commit

Permalink
disable gpg sign and eliminate edgecase of having GPG signing enabled… (
Browse files Browse the repository at this point in the history
#6421)

* disable gpg sign and eliminate edgecase of having GPG signing enabled while pushing a lightweight tag
* disallow signing via supported parameter
  • Loading branch information
scbedd authored Jun 28, 2023
1 parent 5070bfa commit 789c42d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public async Task Push(string pathToAssetsJson) {
throw GenerateInvokeException(SHAResult);
}

GitHandler.Run($"tag {generatedTagName}", config);
GitHandler.Run($"tag --no-sign {generatedTagName}", config);

var remoteResult = GitHandler.Run($"ls-remote origin --tags {generatedTagName}", config);

Expand Down

0 comments on commit 789c42d

Please sign in to comment.