2022-04-18 21:03:12 +02:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
. ./.ci/common/pre-upload.sh
|
|
|
|
|
|
|
|
REV_NAME="citra-${GITDATE}-${GITREV}"
|
2022-08-13 17:52:15 +02:00
|
|
|
[ "${GITHUB_REPOSITORY}" = "citra-emu/citra-canary" ] &&
|
|
|
|
BUILD_FLAVOR=canary ||
|
|
|
|
BUILD_FLAVOR=nightly
|
2022-04-18 21:03:12 +02:00
|
|
|
|
2022-08-13 17:52:15 +02:00
|
|
|
cp src/android/app/build/outputs/apk/${BUILD_FLAVOR}/release/app-${BUILD_FLAVOR}-release.apk \
|
2022-04-18 21:03:12 +02:00
|
|
|
"artifacts/${REV_NAME}.apk"
|
2022-08-13 17:52:15 +02:00
|
|
|
cp src/android/app/build/outputs/bundle/${BUILD_FLAVOR}Release/app-${BUILD_FLAVOR}-release.aab \
|
2022-04-18 21:03:12 +02:00
|
|
|
"artifacts/${REV_NAME}.aab"
|