1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-27 18:16:54 -06:00

14 lines
283 B
Bash
Raw Normal View History

2019-07-13 21:34:40 -04:00
#!/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