diff options
Diffstat (limited to '.ci/scripts/windows/upload.ps1')
| -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..9fb99eaa3 100644 --- a/.ci/scripts/windows/upload.ps1 +++ b/.ci/scripts/windows/upload.ps1 | |||
| @@ -1,6 +1,13 @@ | |||
| 1 | param($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 | |
| 6 | if ("$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 " ", "" |