Skip to content

Commit

Permalink
ci: Build Android app in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thehale committed Jun 23, 2024
1 parent e5d045e commit e6494b3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Android"

on:
push:
branches: ["master", "ci"]

jobs:
build:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: yarn install
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Build Application
run: |
cd android
./gradlew bundleRelease

0 comments on commit e6494b3

Please sign in to comment.