1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-26 17:46:54 -06:00
2019-07-13 21:34:40 -04:00

14 lines
283 B
Bash

#!/bin/bash -ex
. .ci/scripts/common/pre-upload.sh
REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}"
ARCHIVE_NAME="${REV_NAME}.tar.gz"
COMPRESSION_FLAGS="-czvf"
mkdir "$REV_NAME"
# get around the permission issues
cp -r package/* "$REV_NAME"
. .ci/scripts/common/post-upload.sh