Fix ci
This commit is contained in:
parent
b89b425a53
commit
e8d4621e11
|
|
@ -28,7 +28,9 @@ jobs:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
|
|
||||||
- name: Build Debug
|
- name: Build Debug
|
||||||
run: ./gradlew buildDebug
|
run: |
|
||||||
|
echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties
|
||||||
|
./gradlew buildDebug
|
||||||
- name: Upload Debug artifact
|
- name: Upload Debug artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
|
@ -38,7 +40,9 @@ jobs:
|
||||||
out/manager-debug.apk
|
out/manager-debug.apk
|
||||||
|
|
||||||
- name: Build Release
|
- name: Build Release
|
||||||
run: ./gradlew buildRelease
|
run: |
|
||||||
|
echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties
|
||||||
|
./gradlew buildRelease
|
||||||
- name: Upload Release artifact
|
- name: Upload Release artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue