1. Restore the original simple version of `configure.sh` Restores08e37f4
"Refactor configure.sh" Revertsb87ee95b
"Fixed configure.sh script and gh actions" 2. Use GitHub Secrets instead of a private git repository to enhance security standards and ensure credentials are encrypted and safely managed. 3. Document credentials used by GitHub Actions in docs/CREDENTIALS.md 4. Include `network_security_config.xml` directly into the repo as it has nothing sensitive. 5. Include Apple WWDR intermediate certificates directly into the repo as they are not sensitive and publicly available. https://developer.apple.com/help/account/reference/wwdr-intermediate-certificates 6. Add `private.h` in the repository since it does not differ from `private_defaults.h`. Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
90 lines
2.7 KiB
YAML
90 lines
2.7 KiB
YAML
name: Android Beta
|
|
on:
|
|
workflow_dispatch: # Manual trigger
|
|
push:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- .gitignore
|
|
- .github/**
|
|
- '!.github/workflows/android-beta.yaml' # Run check on self change
|
|
- '**/*_tests/**'
|
|
- '**/CMakeLists.txt'
|
|
- CONTRIBUTORS
|
|
- LICENSE
|
|
- NOTICE
|
|
- README.md
|
|
- iphone/**
|
|
- data/strings/**
|
|
- docs/**
|
|
- generator/**
|
|
- packaging/**
|
|
- platform/*apple*
|
|
- platform/*_ios*
|
|
- platform/*_linux*
|
|
- platform/*_mac*
|
|
- platform/*qt*
|
|
- platform/*_win*
|
|
- pyhelpers/**
|
|
- qt*/**
|
|
- skin_generator/**
|
|
- tools/**
|
|
- track_generator/**
|
|
- xcode/**
|
|
|
|
env:
|
|
JAVA_HOME: /usr/lib/jvm/temurin-17-jdk-amd64 # Java 17 is required for Android Gradle 8 plugin
|
|
|
|
jobs:
|
|
android-google-beta:
|
|
name: Android Google Beta
|
|
runs-on: ubuntu-latest
|
|
environment: beta
|
|
steps:
|
|
- name: Install build tools and dependencies
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y ninja-build
|
|
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 100 # enough to get all commits for the current day
|
|
|
|
- name: Parallel submodules checkout
|
|
shell: bash
|
|
run: git submodule update --depth 1 --init --recursive --jobs=$(($(nproc) * 20))
|
|
|
|
- name: Restore beta keys
|
|
shell: bash
|
|
run: |
|
|
echo "$PRIVATE_H" | base64 -d > private.h
|
|
echo "$FIREBASE_APP_DISTRIBUTION_JSON" | base64 -d > android/app/firebase-app-distribution.json
|
|
echo "$GOOGLE_SERVICES_JSON" | base64 -d > android/app/google-services.json
|
|
echo "$SECURE_PROPERTIES" | base64 -d > android/app/secure.properties
|
|
echo "$RELEASE_KEYSTORE" | base64 -d > android/app/release.keystore
|
|
env:
|
|
PRIVATE_H: ${{ secrets.PRIVATE_H }}
|
|
FIREBASE_APP_DISTRIBUTION_JSON: ${{ secrets.FIREBASE_APP_DISTRIBUTION_JSON }}
|
|
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
|
|
SECURE_PROPERTIES: ${{ secrets.SECURE_PROPERTIES }}
|
|
RELEASE_KEYSTORE: ${{ secrets.RELEASE_KEYSTORE }}
|
|
|
|
- name: Configure repository
|
|
shell: bash
|
|
run: ./configure.sh
|
|
|
|
- name: Compile
|
|
shell: bash
|
|
working-directory: android
|
|
run: |
|
|
cmake --version
|
|
ninja --version
|
|
./gradlew -Pfirebase assembleGoogleBeta uploadCrashlyticsSymbolFileGoogleBeta uploadCrashlyticsMappingFileGoogleBeta
|
|
|
|
- name: Upload beta apk to App Distribution
|
|
shell: bash
|
|
working-directory: android
|
|
run: |
|
|
./gradlew appDistributionUploadGoogleBeta
|