1
0
Fork 0
mirror of https://github.com/yuzu-emu/yuzu-android.git synced 2025-03-08 10:10:37 +00:00
yuzu-android/.ci/scripts/windows/upload.sh
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