Skip to content
This repository has been archived by the owner on Nov 25, 2023. It is now read-only.

Update README.md

Update README.md #41

Workflow file for this run

name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assembleDebug
- name: Upload APK
uses: actions/upload-artifact@v3
if: ${{ !github.head_ref }}
with:
name: apk-debug
path: app/build/outputs/apk/debug/app-debug.apk
- name: Build aab with Gradle
run: ./gradlew bundleDebug
- name: Upload aab
uses: actions/upload-artifact@v3
if: ${{ !github.head_ref }}
with:
name: apk-debug
path: app/build/outputs/bundle/debug/app-debug.aab