Fix repo tab container color mismatching with title when scrolled #176
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: Build debug APK | |
on: | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
- '.idea/*' | |
- 'LICENSE' | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
- '.idea/*' | |
- 'LICENSE' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v2.0.10 | |
- name: Build APK | |
run: chmod +x ./gradlew && ./gradlew :app:android:assembleDebug | |
- name: Upload APK | |
uses: actions/upload-artifact@v4.4.0 | |
with: | |
name: gloom-debug | |
path: app/android/build/outputs/apk/debug/android-debug.apk |