mirror of
https://github.com/izzy2lost/Shipwright-Android.git
synced 2026-07-05 15:19:26 -07:00
Add files via upload
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
---
|
||||
name: Upload Apk
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-android:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Checkout repository (with submodules)
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Install dependencies
|
||||
run: choco install ninja -y
|
||||
|
||||
- name: Build SoH APK
|
||||
run: |
|
||||
.\gradlew.bat assembleDebug -P elfBuildType=RelWithDebInfo
|
||||
move app\build\outputs\apk\debug\app-debug.apk soh.apk
|
||||
|
||||
- name: Upload APK artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: soh-apk
|
||||
path: soh.apk
|
||||
Reference in New Issue
Block a user