Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/check_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ jobs:
- name: Accept Android licenses
run: yes | "$ANDROID_HOME"/cmdline-tools/latest/bin/sdkmanager --licenses || true

- name: Restore google-services.json
run: |
mkdir -p app
echo "${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}" | base64 --decode > app/google-services.json

- name: Run Espresso tests on Pixel6 Api${{ matrix.api-level }} AOSP
run: ./gradlew pixel6Api${{ matrix.api-level }}aospDebugAndroidTest
-Pandroid.experimental.testOptions.managedDevices.emulator.showKernelLogging=true
Expand Down Expand Up @@ -138,6 +143,12 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Restore google-services.json
run: |
mkdir -p app
echo "${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}" | base64 --decode > app/google-services.json

# 2
- name: Generate Release APK
run: ./gradlew assembleRelease
Expand Down
Loading