mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 13:35:33 +03:00
9d341c2c19
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
34 lines
1 KiB
YAML
34 lines
1 KiB
YAML
name: "Assemble"
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master, stable-* ]
|
|
|
|
# Declare default permissions as read only.
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
flavor:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
flavor: [ Generic, Gplay ]
|
|
steps:
|
|
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3
|
|
- name: set up JDK 11
|
|
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3
|
|
with:
|
|
distribution: "temurin"
|
|
java-version: 11
|
|
- name: Build ${{ matrix.flavor }}
|
|
run: |
|
|
echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" >> gradle.properties
|
|
./gradlew assemble${{ matrix.flavor }}
|
|
- name: Archive apk
|
|
uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # v3
|
|
if: ${{ always() }}
|
|
with:
|
|
name: Nextcloud-APK
|
|
path: app/build/outputs/apk/**/**/*.apk
|
|
retention-days: 5
|