Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/android.yml')
-rw-r--r--.github/workflows/android.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
index 0b2d4d282..b614b0512 100644
--- a/.github/workflows/android.yml
+++ b/.github/workflows/android.yml
@@ -22,7 +22,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Lint
- run: bash ./gradlew lintDebug --stacktrace
+ run: bash ./gradlew lintDebug --stacktrace --no-configuration-cache
test:
name: Unit tests
@@ -31,7 +31,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Unit tests
- run: bash ./gradlew test --stacktrace
+ run: bash ./gradlew test --stacktrace --no-configuration-cache
apk:
name: Generate APK
@@ -40,7 +40,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Build debug APK
- run: bash ./gradlew assembleDev
+ run: bash ./gradlew assembleDev --no-configuration-cache
- name: Upload APK
uses: actions/upload-artifact@v4
with: