mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-02 21:12:44 +01:00
22 lines
711 B
Bash
Executable file
22 lines
711 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
. ./.ci/scripts/common/pre-upload.sh
|
|
|
|
REV_NAME="suyu-${GITDATE}-${GITREV}"
|
|
|
|
BUILD_FLAVOR="mainline"
|
|
|
|
BUILD_TYPE_LOWER="release"
|
|
BUILD_TYPE_UPPER="Release"
|
|
if [ "${GITHUB_REPOSITORY}" == "suyu-emu/suyu" ]; then
|
|
BUILD_TYPE_LOWER="relWithDebInfo"
|
|
BUILD_TYPE_UPPER="RelWithDebInfo"
|
|
fi
|
|
|
|
cp src/android/app/build/outputs/apk/"${BUILD_FLAVOR}/${BUILD_TYPE_LOWER}/app-${BUILD_FLAVOR}-${BUILD_TYPE_LOWER}.apk" \
|
|
"artifacts/${REV_NAME}.apk"
|
|
cp src/android/app/build/outputs/bundle/"${BUILD_FLAVOR}${BUILD_TYPE_UPPER}"/"app-${BUILD_FLAVOR}-${BUILD_TYPE_LOWER}.aab" \
|
|
"artifacts/${REV_NAME}.aab"
|