We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee52eec commit 1e70819Copy full SHA for 1e70819
2 files changed
.github/workflows/ci.yml
@@ -49,5 +49,7 @@ jobs:
49
distribution: 'zulu'
50
java-version: 24
51
- uses: gradle/actions/setup-gradle@v4
52
+ with:
53
+ cache-disabled: true
54
- name: Build Debug APK
- run: ./gradlew :app:assembleDebug --stacktrace
55
+ run: ./gradlew :app:assembleDebug --stacktrace --no-configuration-cache
.github/workflows/release.yml
@@ -25,8 +25,10 @@ jobs:
25
26
27
28
29
30
- name: Build APK
- run: ./gradlew :app:assembleRelease --stacktrace
31
+ run: ./gradlew :app:assembleRelease --stacktrace --no-configuration-cache
32
- name: Create Release
33
uses: ncipollo/release-action@v1
34
with:
0 commit comments