diff --git a/.ci/scripts/android/eaupload.sh b/.ci/scripts/android/eaupload.sh deleted file mode 100644 index 736bc3b17..000000000 --- a/.ci/scripts/android/eaupload.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/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="yuzu-${GITDATE}-${GITREV}" - -BUILD_FLAVOR="ea" - -BUILD_TYPE_LOWER="release" -BUILD_TYPE_UPPER="Release" -if [ "${GITHUB_REPOSITORY}" == "yuzu-emu/yuzu" ]; 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"