This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2018-04-12 21:43:32 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
2020-11-12 05:21:35 +00:00
|
|
|
. .ci/common/pre-upload.sh
|
2018-04-12 21:43:32 +00:00
|
|
|
|
|
|
|
REV_NAME="citra-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"
|
|
|
|
|
2020-11-12 05:21:35 +00:00
|
|
|
. .ci/common/post-upload.sh
|