mirror of https://github.com/yuzu-mirror/yuzu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
277 B
Bash
15 lines
277 B
Bash
6 years ago
|
#!/bin/bash -ex
|
||
|
|
||
|
. .ci/scripts/common/pre-upload.sh
|
||
|
|
||
|
REV_NAME="yuzu-linux-${GITDATE}-${GITREV}"
|
||
|
ARCHIVE_NAME="${REV_NAME}.tar.xz"
|
||
|
COMPRESSION_FLAGS="-cJvf"
|
||
|
|
||
|
mkdir "$REV_NAME"
|
||
|
|
||
|
cp build/bin/yuzu-cmd "$REV_NAME"
|
||
|
cp build/bin/yuzu "$REV_NAME"
|
||
|
|
||
|
. .ci/scripts/common/post-upload.sh
|