Skip to content

Commit

Permalink
Attempt to build for Android
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravbug authored Feb 7, 2024
1 parent 1bc2fd0 commit 20d4a4c
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build Sample for Android

on: [push, pull_request]

jobs:
apk:
name: Apk Build
runs-on: ubuntu-latest

steps:
- name: Get the Android Builder
run: git clone https://github.com/ravbug/sdl-android-builder
- uses: actions/checkout@v3
with:
submodules: true
path: sdl-android-builder/to-build/
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'

- name: Update the build.gradle
run: |
cp build.gradle SDL/android-project/app/
- name: Build the APK
run: |
cd SDL/android-project/
./gradlew installDebug
- name: Upload the APK
uses: actions/upload-artifact@v3
with:
name: app-debug.apk
path: SDL/android-project/app/build/outputs/apk/debug/app-debug.apk

0 comments on commit 20d4a4c

Please sign in to comment.