Update library to 2026-04-12 #19399
Workflow file for this run
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors | |
| # SPDX-FileCopyrightText: 2023 Andy Scherzinger <info@andy-scherzinger.de> | |
| # SPDX-License-Identifier: MIT | |
| name: "QA" | |
| on: | |
| pull_request: | |
| branches: [ main, master, stable-* ] | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| concurrency: | |
| group: qa-build-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| qa: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check if secrets are available | |
| run: echo "ok=${{ secrets.KS_PASS != '' }}" >> "$GITHUB_OUTPUT" | |
| id: check-secrets | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| if: ${{ steps.check-secrets.outputs.ok == 'true' }} | |
| with: | |
| persist-credentials: false | |
| - name: set up JDK 21 | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| if: ${{ steps.check-secrets.outputs.ok == 'true' }} | |
| with: | |
| distribution: "temurin" | |
| java-version: 21 | |
| - name: Build QA | |
| if: ${{ steps.check-secrets.outputs.ok == 'true' }} | |
| env: | |
| KS_PASS: ${{ secrets.KS_PASS }} | |
| KEY_PASS: ${{ secrets.KEY_PASS }} | |
| LOG_USERNAME: ${{ secrets.LOG_USERNAME }} | |
| LOG_PASSWORD: ${{ secrets.LOG_PASSWORD }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| mkdir -p "$HOME/.gradle" | |
| echo "org.gradle.jvmargs=-Xmx3g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:+UseParallelGC -XX:MaxMetaspaceSize=1g" > "$HOME/.gradle/gradle.properties" | |
| echo "org.gradle.caching=true; org.gradle.parallel=true; org.gradle.configureondemand=true; kapt.incremental.apt=true" >> "$HOME/.gradle/gradle.properties" | |
| [ -e app/build.gradle ] && sed -i "/qa/,/\}/ s/versionCode .*/versionCode ${{github.event.number}} /" "app/build.gradle" | |
| [ -e app/build.gradle ] && sed -i "/qa/,/\}/ s/versionName .*/versionName \"${{github.event.number}}\"/" "app/build.gradle" | |
| [ -e app/build.gradle.kts ] && sed -i "/qa/,/\}/ s/versionCode .*/versionCode = ${{github.event.number}} /" "app/build.gradle.kts" | |
| [ -e app/build.gradle.kts ] && sed -i "/qa/,/\}/ s/versionName .*/versionName = \"${{github.event.number}}\"/" "app/build.gradle.kts" | |
| ./gradlew assembleQaDebug | |
| $(find /usr/local/lib/android/sdk/build-tools/*/apksigner | sort | tail -n1) sign --ks-pass pass:"$KS_PASS" --key-pass pass:"$KEY_PASS" --ks-key-alias key0 --ks ".github/workflows/QA_keystore.jks" app/build/outputs/apk/qa/debug/*qa-debug*.apk | |
| - name: Upload APK | |
| id: upload-apk | |
| uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f | |
| with: | |
| path: app/build/outputs/apk/qa/debug/*qa-debug*.apk | |
| retention-days: 7 | |
| archive: false | |
| - name: Create QR Code | |
| run: | | |
| sudo apt-get -y install qrencode | |
| qrencode -o qr.png "${{ steps.upload-apk.outputs.artifact-url }}" | |
| - name: Upload QR | |
| id: upload-qr | |
| uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f | |
| with: | |
| path: qr.png | |
| retention-days: 7 | |
| archive: false | |
| - name: Comment PR | |
| uses: thollander/actions-comment-pull-request@e4a76dd2b0a3c2027c3fd84147a67c22ee4c90fa | |
| with: | |
| message: | | |
| APK file: ${{ steps.upload-apk.outputs.artifact-url }} | |
| To test this change/fix you can simply download above APK file and install and test it in parallel to your existing Nextcloud app. | |
|  (please click on link to get QR code displayed) |