Git tag command needs user/email

This commit is contained in:
RKrom 2014-11-03 16:31:20 +01:00
commit ed7a39178a

View file

@ -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."