Revert "ci: Rename build folder only on non-mainline builds"

This commit is contained in:
bunnei 2019-11-06 21:36:50 -05:00 committed by GitHub
parent 468576284d
commit f1e4f3fc0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 30 deletions

View file

@ -6,14 +6,8 @@ REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}"
ARCHIVE_NAME="${REV_NAME}.tar.gz"
COMPRESSION_FLAGS="-czvf"
if [ "${RELEASE_NAME}" = "mainline" ]; then
DIR_NAME="${REV_NAME}_${RELEASE_NAME}"
else
DIR_NAME="${REV_NAME}"
fi
mkdir "$DIR_NAME"
mkdir "$REV_NAME"
# get around the permission issues
cp -r package/* "$DIR_NAME"
cp -r package/* "$REV_NAME"
. .ci/scripts/common/post-upload.sh