8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b59c8a4 commit bf31d3dCopy full SHA for bf31d3d
appveyor.yml
@@ -39,8 +39,9 @@ install:
39
Write-Host "Is a Pull Request = " -NoNewLine
40
Write-Host $($Env:APPVEYOR_PULL_REQUEST_NUMBER -ne $null) -ForegroundColor "Green"
41
42
- $BuildDate = (Get-Date).ToUniversalTime().ToString("yyyyMMddHHmmss")
43
- Write-Host "Build UTC date = " -NoNewLine
+ $CommitDate = [DateTime]::Parse($Env:APPVEYOR_REPO_COMMIT_TIMESTAMP)
+ $BuildDate = $CommitDate.ToUniversalTime().ToString("yyyyMMddHHmmss")
44
+ Write-Host "Merge commit UTC timestamp = " -NoNewLine
45
Write-Host $BuildDate -ForegroundColor "Green"
46
47
$VersionSuffix = ""
0 commit comments