58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
# Builds the project and uploads a debug APK
|
|
name: Android PR CI
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build, Sign & Upload
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout project
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: set up JDK 17
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
cache: gradle
|
|
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.gradle/caches
|
|
~/.gradle/wrapper
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gradle-
|
|
|
|
- name: Grant execute permission for gradlew
|
|
run: chmod +x gradlew
|
|
|
|
- name: Get weather.properties from secrets
|
|
run: printf "%s" "${{ secrets.WEATHER_PROPERTIES }}" > $GITHUB_WORKSPACE/weather.properties
|
|
|
|
- name: Build with Gradle
|
|
run: ./gradlew clean && ./gradlew assembleWithInternetDebug && ./gradlew assembleWithoutInternetDebug
|
|
|
|
- name: Upload Artifact - WithInternet
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Signed app bundle - WithInternet
|
|
path: app/build/outputs/apk/withInternet/debug/*.apk
|
|
retention-days: 3
|
|
|
|
- name: Upload Artifact - WithoutInternet
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Signed app bundle - WithoutInternet
|
|
path: app/build/outputs/apk/withoutInternet/debug/*.apk
|
|
retention-days: 3
|