You've already forked Shipwright-Android
mirror of
https://github.com/izzy2lost/Shipwright-Android.git
synced 2026-03-26 16:51:07 -07:00
33 lines
742 B
YAML
33 lines
742 B
YAML
---
|
|
name: Upload Release Apk
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-android:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
|
|
- name: Checkout repository (with submodules)
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Install dependencies
|
|
run: sudo apt-get install -y ninja-build
|
|
|
|
- name: Give gradlew permissions
|
|
run: chmod +x gradlew
|
|
|
|
- name: Build SoH APK (Release)
|
|
run: |
|
|
./gradlew assembleRelease -P elfBuildType=Release
|
|
mv app/build/outputs/apk/release/app-release.apk soh-release.apk
|
|
|
|
- name: Upload APK artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: soh-release-apk
|
|
path: soh-release.apk
|