Always build a windows release binary on tags.

This commit is contained in:
Daniel Kirchner 2020-10-15 00:41:31 +02:00
parent 9d873b102e
commit a7b8ad311d

View File

@ -2,7 +2,7 @@ $ErrorActionPreference = "Stop"
cd "$PSScriptRoot\.."
if ("$Env:FORCE_RELEASE") {
if ("$Env:FORCE_RELEASE" -Or "$Env:CIRCLE_TAG") {
New-Item prerelease.txt -type file
Write-Host "Building release version."
}