diff --git a/.editorconfig b/.editorconfig index b34abfa1159..70a2b17b79a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,7 @@ # # SPDX-FileCopyrightText: 2025 NewPipe e.V. # SPDX-License-Identifier: GPL-3.0-or-later + # root = true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0fa1ca84ccb..69817685d07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,14 +54,14 @@ jobs: distribution: "temurin" cache: 'gradle' - - name: Build debug APK and run jvm tests - run: ./gradlew assembleDebug lintDebug testDebugUnitTest --stacktrace -DskipFormatKtlint + - name: Build APK + run: ./gradlew assembleRelease lintRelease testReleaseUnitTest - name: Upload APK uses: actions/upload-artifact@v6 with: name: app - path: app/build/outputs/apk/debug/*.apk + path: app/build/outputs/apk/release/*.apk test-android: runs-on: ubuntu-latest