mirror of
https://codeberg.org/TheGreatMcPain/yuzu.git
synced 2025-03-15 23:31:50 +00:00
14 lines
269 B
Bash
Executable file
14 lines
269 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
. .travis/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"
|
|
|
|
. .travis/common/post-upload.sh
|