-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53c6760
commit 08cdf57
Showing
1 changed file
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
#file: noinspection SpellCheckingInspection | ||
name: Generate APK Debug | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
paths-ignore: | ||
- '**.md' | ||
pull_request: | ||
branches: | ||
- '*' | ||
paths-ignore: | ||
- '**.md' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
|
||
- name: Set up Java 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: 17 | ||
distribution: 'temurin' | ||
|
||
- name: Setup Android SDK | ||
uses: android-actions/setup-android@v2 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
gradle-home-cache-includes: | | ||
caches | ||
notifications | ||
jdks | ||
${{ github.workspace }}/.gradle/configuration-cache | ||
- name: Change wrapper permissions | ||
run: chmod +x ./gradlew | ||
- name: Build apk debug | ||
run: ./gradlew app:assembleDefaultDebug | ||
|
||
- name: Upload MMRL-default-arm64-v8a-debug | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MMRL-default-arm64-v8a-debug | ||
path: app/build/outputs/apk/default/debug/*-default-arm64-v8a-debug.apk | ||
|
||
- name: Upload MMRL-default-armeabi-v7a-debug | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MMRL-default-armeabi-v7a-debug | ||
path: app/build/outputs/apk/default/debug/*-default-armeabi-v7a-debug.apk | ||
|
||
- name: Upload MMRL-default-universal-debug | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MMRL-default-universal-debug | ||
path: app/build/outputs/apk/default/debug/*-default-universal-debug.apk | ||
|
||
- name: Upload MMRL-default-x86-debug | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MMRL-default-x86-debug | ||
path: app/build/outputs/apk/default/debug/*-default-x86-debug.apk | ||
|
||
- name: Upload MMRL-default-x86_64-debug | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MMRL-default-x86_64-debug | ||
path: app/build/outputs/apk/default/debug/*-default-x86_64-debug.apk | ||
|
||
- name: Upload MMRL-default-universal-debug | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: MMRL-default-universal-debug | ||
path: app/build/outputs/apk/default/debug/*-default-universal-debug.apk |