Skip to content

Commit

Permalink
Build APK workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
moneytoo committed Dec 14, 2024
1 parent f02ca7c commit 06c67d0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/android-build-apk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Android Build APK

on:
workflow_dispatch:
push:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: gradle

- run: ./gradlew assembleLatestUniversalFull

0 comments on commit 06c67d0

Please sign in to comment.