Skip to content

Commit

Permalink
Disable GPG signing on commit (#6862)
Browse files Browse the repository at this point in the history
Fixes #6861
  • Loading branch information
heaths authored Aug 28, 2023
1 parent a87d4c1 commit 7e613f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public async Task Push(string pathToAssetsJson) {
GitHandler.Run($"branch {branchGuid}", config);
GitHandler.Run($"checkout {branchGuid}", config);
GitHandler.Run($"add -A .", config);
GitHandler.Run($"-c user.name=\"{gitUserName}\" -c user.email=\"{gitUserEmail}\" commit -m \"Automatic asset update from test-proxy.\"", config);
GitHandler.Run($"-c user.name=\"{gitUserName}\" -c user.email=\"{gitUserEmail}\" commit --no-gpg-sign -m \"Automatic asset update from test-proxy.\"", config);
// Get the first 10 digits of the commit SHA. The generatedTagName will be the
// config.TagPrefix_<SHA>
if (GitHandler.TryRun("rev-parse --short=10 HEAD", config.AssetsRepoLocation.ToString(), out CommandResult SHAResult))
Expand Down

0 comments on commit 7e613f7

Please sign in to comment.