mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
20 lines
421 B
Bash
Executable File
20 lines
421 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
|
|
./gradlew assembleRelease
|
|
./gradlew bundleRelease
|
|
|
|
ccache -s -v
|
|
|
|
if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then
|
|
rm "${ANDROID_KEYSTORE_FILE}"
|
|
fi
|