2021-04-22 19:17:02 +03:00
|
|
|
name: "Assemble"
|
|
|
|
|
|
|
|
on:
|
2022-12-16 17:13:55 +03:00
|
|
|
pull_request:
|
|
|
|
branches: [ master, stable-* ]
|
2022-12-16 14:24:03 +03:00
|
|
|
|
|
|
|
# Declare default permissions as read only.
|
|
|
|
permissions: read-all
|
2021-04-22 19:17:02 +03:00
|
|
|
|
|
|
|
jobs:
|
2022-12-16 17:13:55 +03:00
|
|
|
flavor:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
flavor: [ Generic, Gplay ]
|
|
|
|
steps:
|
2023-01-10 11:28:35 +03:00
|
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2022-12-16 17:13:55 +03:00
|
|
|
- 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
|
2023-01-10 11:32:46 +03:00
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
2022-12-16 17:13:55 +03:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
name: Nextcloud-APK
|
|
|
|
path: app/build/outputs/apk/**/**/*.apk
|
|
|
|
retention-days: 5
|