ci: Add build name to archive root folder

This commit is contained in:
Zach Hilman 2019-10-23 15:23:43 -04:00
parent 6fe89acf0d
commit 5e553a6c26
5 changed files with 15 additions and 10 deletions

View file

@ -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 " ", ""