Revert "ci: Rename build folder only on non-mainline builds"

This commit is contained in:
bunnei 2019-11-06 21:36:50 -05:00 committed by GitHub
parent 468576284d
commit f1e4f3fc0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 30 deletions

View file

@ -1,13 +1,6 @@
param($BUILD_NAME)
$GITDATE = $(git show -s --date=short --format='%ad') -replace "-",""
$GITREV = $(git show -s --format='%h')
if ("$BUILD_NAME" -eq "mainline") {
$RELEASE_DIST = "yuzu-windows-msvc-$BUILD_NAME"
} else {
$RELEASE_DIST = "yuzu-windows-msvc"
}
$RELEASE_DIST = "yuzu-windows-msvc"
$MSVC_BUILD_ZIP = "yuzu-windows-msvc-$GITDATE-$GITREV.zip" -replace " ", ""
$MSVC_BUILD_PDB = "yuzu-windows-msvc-$GITDATE-$GITREV-debugsymbols.zip" -replace " ", ""