mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 14:05:45 +00:00
21 lines
505 B
Bash
Executable file
21 lines
505 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
# SPDX-FileCopyrightText: 2025 eden Emulator Project
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
export NDK_CCACHE=$(which ccache)
|
|
|
|
if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then
|
|
export ANDROID_KEYSTORE_FILE="${GITHUB_WORKSPACE}/ks.jks"
|
|
base64 --decode <<< "${ANDROID_KEYSTORE_B64}" > "${ANDROID_KEYSTORE_FILE}"
|
|
fi
|
|
|
|
cd src/android
|
|
chmod +x ./gradlew
|
|
|
|
./gradlew assembleRelease
|
|
./gradlew bundleRelease
|
|
|
|
if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then
|
|
rm "${ANDROID_KEYSTORE_FILE}"
|
|
fi
|