Skip to content

Commit

Permalink
Android CI
Browse files Browse the repository at this point in the history
  • Loading branch information
428571c authored May 31, 2024
1 parent dbf0763 commit c2f81f5
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Android CI

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Build and package the app
run: ./gradlew assembleDebug

- name: Upload APK artifact
uses: actions/upload-artifact@v2
with:
name: app-debug
path: app/build/outputs/apk/debug/*.apk

0 comments on commit c2f81f5

Please sign in to comment.