Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/RavEngine/HelloCube
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravbug committed Feb 7, 2024
2 parents b227bdf + 16d356b commit 5000026
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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: Build the APK
run: |
cd sdl-android-builder
./gradlew installDebug
- name: Upload the APK
uses: actions/upload-artifact@v3
with:
name: app-debug.apk
path: sdl-android-builder/app/build/outputs/apk/*

0 comments on commit 5000026

Please sign in to comment.