mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
fbad68de0f
Use XZ instead of gzip for packing. Should save about 10 MB.
19 lines
406 B
Bash
19 lines
406 B
Bash
#!/bin/bash -ex
|
|
|
|
. .ci/scripts/common/pre-upload.sh
|
|
|
|
REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}"
|
|
ARCHIVE_NAME="${REV_NAME}.tar.xz"
|
|
COMPRESSION_FLAGS="-cJvf"
|
|
|
|
if [ "${RELEASE_NAME}" = "mainline" ]; then
|
|
DIR_NAME="${REV_NAME}"
|
|
else
|
|
DIR_NAME="${REV_NAME}_${RELEASE_NAME}"
|
|
fi
|
|
|
|
mkdir "$DIR_NAME"
|
|
# get around the permission issues
|
|
cp -r package/* "$DIR_NAME"
|
|
|
|
. .ci/scripts/common/post-upload.sh
|