summaryrefslogtreecommitdiffstats
path: root/.ci/scripts/windows/upload.ps1
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-10-23 21:52:37 +0200
committerGitHub <noreply@github.com>2019-10-23 21:52:37 +0200
commit012d7f52337bae999abcc4943b45b8fe5ab5f7a3 (patch)
treec0a69ca995dce8a46f7f4b549ced4a80e866888a /.ci/scripts/windows/upload.ps1
parentMerge pull request #2991 from lioncash/npad (diff)
parentci: Add build name to archive root folder (diff)
downloadyuzu-012d7f52337bae999abcc4943b45b8fe5ab5f7a3.tar
yuzu-012d7f52337bae999abcc4943b45b8fe5ab5f7a3.tar.gz
yuzu-012d7f52337bae999abcc4943b45b8fe5ab5f7a3.tar.bz2
yuzu-012d7f52337bae999abcc4943b45b8fe5ab5f7a3.tar.lz
yuzu-012d7f52337bae999abcc4943b45b8fe5ab5f7a3.tar.xz
yuzu-012d7f52337bae999abcc4943b45b8fe5ab5f7a3.tar.zst
yuzu-012d7f52337bae999abcc4943b45b8fe5ab5f7a3.zip
Diffstat (limited to '.ci/scripts/windows/upload.ps1')
-rw-r--r--.ci/scripts/windows/upload.ps14
1 files changed, 3 insertions, 1 deletions
diff --git a/.ci/scripts/windows/upload.ps1 b/.ci/scripts/windows/upload.ps1
index 3cb709924..2371a7d4a 100644
--- a/.ci/scripts/windows/upload.ps1
+++ b/.ci/scripts/windows/upload.ps1
@@ -1,6 +1,8 @@
+param($BUILD_NAME)
+
$GITDATE = $(git show -s --date=short --format='%ad') -replace "-",""
$GITREV = $(git show -s --format='%h')
-$RELEASE_DIST = "yuzu-windows-msvc"
+$RELEASE_DIST = "yuzu-windows-msvc-$BUILD_NAME"
$MSVC_BUILD_ZIP = "yuzu-windows-msvc-$GITDATE-$GITREV.zip" -replace " ", ""
$MSVC_BUILD_PDB = "yuzu-windows-msvc-$GITDATE-$GITREV-debugsymbols.zip" -replace " ", ""