summaryrefslogtreecommitdiff
path: root/.ci/scripts/windows/upload.ps1
diff options
context:
space:
mode:
Diffstat (limited to '.ci/scripts/windows/upload.ps1')
-rw-r--r--.ci/scripts/windows/upload.ps19
1 files changed, 8 insertions, 1 deletions
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 @@
1param($BUILD_NAME)
2
1$GITDATE = $(git show -s --date=short --format='%ad') -replace "-","" 3$GITDATE = $(git show -s --date=short --format='%ad') -replace "-",""
2$GITREV = $(git show -s --format='%h') 4$GITREV = $(git show -s --format='%h')
3$RELEASE_DIST = "yuzu-windows-msvc" 5
6if ("$BUILD_NAME" -eq "mainline") {
7 $RELEASE_DIST = "yuzu-windows-msvc-$BUILD_NAME"
8} else {
9 $RELEASE_DIST = "yuzu-windows-msvc"
10}
4 11
5$MSVC_BUILD_ZIP = "yuzu-windows-msvc-$GITDATE-$GITREV.zip" -replace " ", "" 12$MSVC_BUILD_ZIP = "yuzu-windows-msvc-$GITDATE-$GITREV.zip" -replace " ", ""
6$MSVC_BUILD_PDB = "yuzu-windows-msvc-$GITDATE-$GITREV-debugsymbols.zip" -replace " ", "" 13$MSVC_BUILD_PDB = "yuzu-windows-msvc-$GITDATE-$GITREV-debugsymbols.zip" -replace " ", ""