mirror of
https://github.com/azahar-emu/azahar
synced 2026-04-23 09:23:56 +00:00
26 lines
571 B
Bash
Executable file
26 lines
571 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
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
|
|
|
|
if [[ "$TARGET" == "googleplay" ]]; then
|
|
./gradlew assembleGooglePlayRelease
|
|
./gradlew bundleGooglePlayRelease
|
|
else
|
|
./gradlew assembleVanillaRelease
|
|
./gradlew bundleVanillaRelease
|
|
fi
|
|
|
|
ccache -s -v
|
|
|
|
if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then
|
|
rm "${ANDROID_KEYSTORE_FILE}"
|
|
fi
|