This commit is contained in:
Nullptr 2022-03-17 20:08:50 +08:00
parent b89b425a53
commit e8d4621e11
1 changed files with 6 additions and 2 deletions

View File

@ -28,7 +28,9 @@ jobs:
distribution: 'adopt'
- name: Build Debug
run: ./gradlew buildDebug
run: |
echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties
./gradlew buildDebug
- name: Upload Debug artifact
uses: actions/upload-artifact@v2
with:
@ -38,7 +40,9 @@ jobs:
out/manager-debug.apk
- name: Build Release
run: ./gradlew buildRelease
run: |
echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties
./gradlew buildRelease
- name: Upload Release artifact
uses: actions/upload-artifact@v2
with: