diff options
author | bunnei <bunneidev@gmail.com> | 2019-11-07 05:28:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-07 05:28:58 +0100 |
commit | c414ebaa9ce33df9756828d94d752b78dcde70c1 (patch) | |
tree | 10488bbac4b961bfd4f121c2515b5cd19e9c1eb3 /.ci/scripts/windows/upload.ps1 | |
parent | Merge pull request #3077 from yuzu-emu/revert-3073-azure-rename-partial (diff) | |
parent | ci: Rename build folder only on non-mainline builds (diff) | |
download | yuzu-c414ebaa9ce33df9756828d94d752b78dcde70c1.tar yuzu-c414ebaa9ce33df9756828d94d752b78dcde70c1.tar.gz yuzu-c414ebaa9ce33df9756828d94d752b78dcde70c1.tar.bz2 yuzu-c414ebaa9ce33df9756828d94d752b78dcde70c1.tar.lz yuzu-c414ebaa9ce33df9756828d94d752b78dcde70c1.tar.xz yuzu-c414ebaa9ce33df9756828d94d752b78dcde70c1.tar.zst yuzu-c414ebaa9ce33df9756828d94d752b78dcde70c1.zip |
Diffstat (limited to '')
-rw-r--r-- | .ci/scripts/windows/upload.ps1 | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.ci/scripts/windows/upload.ps1 b/.ci/scripts/windows/upload.ps1 index 3cb709924..e34e6681f 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" +} else { + $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 " ", "" |