From 65bed6682c2a5b487c367782fbe634ed7c9b1ccf Mon Sep 17 00:00:00 2001 From: Zach Hilman Date: Tue, 5 Nov 2019 21:07:30 -0500 Subject: ci: Rename build folder only on non-mainline builds --- .ci/scripts/windows/upload.ps1 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to '.ci/scripts/windows/upload.ps1') diff --git a/.ci/scripts/windows/upload.ps1 b/.ci/scripts/windows/upload.ps1 index 3cb709924..9fb99eaa3 100644 --- a/.ci/scripts/windows/upload.ps1 +++ b/.ci/scripts/windows/upload.ps1 @@ -1,6 +1,13 @@ +param($BUILD_NAME) + $GITDATE = $(git show -s --date=short --format='%ad') -replace "-","" $GITREV = $(git show -s --format='%h') -$RELEASE_DIST = "yuzu-windows-msvc" + +if ("$BUILD_NAME" -eq "mainline") { + $RELEASE_DIST = "yuzu-windows-msvc-$BUILD_NAME" +} else { + $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 " ", "" -- cgit v1.2.3