feat: discover screen #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android CI | |
on: | |
push: | |
branches: [ "dev" ] | |
jobs: | |
build: | |
if: ${{ false }} # At the moment, we don't want to run this workflow. | |
runs-on: ubuntu-latest | |
env: | |
RVX_SENTRY_DSN: ${{ vars.RVX_SENTRY_DSN }} | |
RVX_ANALYSIS_ENABLED: ${{ vars.RVX_ANALYSIS_ENABLED }} | |
RVX_ANALYSIS_BASEURL: ${{ vars.RVX_ANALYSIS_BASEURL }} | |
RVX_DEBUG_APP_NAME: ${{ vars.RVX_DEBUG_APP_NAME }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v2 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew --no-daemon assembleDebug | |
- name: Archive debug APK | |
uses: actions/upload-artifact@v3 | |
with: | |
name: debug-apk | |
retention-days: 5 | |
path: | | |
app/build/outputs/apk/debug/app-debug.apk |