From ed7a39178a4834f43766711abbc22cc662a20ac6 Mon Sep 17 00:00:00 2001 From: RKrom Date: Mon, 3 Nov 2014 16:31:20 +0100 Subject: [PATCH] Git tag command needs user/email --- build.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.ps1 b/build.ps1 index 2f5e9e5d9..b3b278d1e 100644 --- a/build.ps1 +++ b/build.ps1 @@ -219,6 +219,8 @@ Function TagCode { } $fileContent += "-----END RSA PRIVATE KEY-----" + "`n" Set-Content c:\users\appveyor\.ssh\id_rsa $fileContent + git config --global user.email "getgreenshot@gmail.com" + git config --global user.name "Greenshot-AppVeyor" Write-Host "Tagging repo with $fileversion" git tag -a $fileversion -m 'Build from AppVeyor' Write-Host "Pushing tags to remote."