mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
b91fbf3f8e
* ci: Fix improper copying of macOS artifacts. * ci: Resign universal macOS app after combining.
17 lines
375 B
Bash
Executable File
17 lines
375 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
. .ci/common/pre-upload.sh
|
|
|
|
REV_NAME="citra-osx-${GITDATE}-${GITREV}"
|
|
ARCHIVE_NAME="${REV_NAME}.tar.gz"
|
|
COMPRESSION_FLAGS="-czvf"
|
|
|
|
mkdir "$REV_NAME"
|
|
|
|
cp -a build/bin/Release/citra "$REV_NAME"
|
|
cp -a build/bin/Release/libs "$REV_NAME"
|
|
cp -a build/bin/Release/citra-qt.app "$REV_NAME"
|
|
cp -a build/bin/Release/citra-room "$REV_NAME"
|
|
|
|
. .ci/common/post-upload.sh
|