mirror of
https://github.com/kichikuou/system3-sdl2.git
synced 2026-09-26 08:38:04 +03:00
26 lines
567 B
YAML
26 lines
567 B
YAML
name: Android Build
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Install Deps
|
|
run: sudo apt install ninja-build
|
|
|
|
- name: Build
|
|
run: |
|
|
cd android
|
|
ANDROID_NDK_HOME=$ANDROID_SDK_ROOT/ndk-bundle ./gradlew assembleRelease
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: system3-release-unsigned-apk
|
|
path: android/app/build/outputs/apk/release/app-release-unsigned.apk
|