Disable configuration cache in actions

This commit is contained in:
Kirill Kamakin
2022-06-12 12:04:09 +02:00
parent 28a5afc371
commit 7c60b69546
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew check coverageReport sonarqube --no-daemon
run: ./gradlew check coverageReport sonarqube --no-daemon --no-configuration-cache
- name: Publish test reports
uses: mikepenz/action-junit-report@v2

View File

@@ -42,7 +42,7 @@ jobs:
echo "storePassword=$MEALIENT_KEY_STORE_PASSWORD" >> keystore.properties
echo "keyAlias=$MEALIENT_KEY_ALIAS" >> keystore.properties
echo "keyPassword=$MEALIENT_KEY_PASSWORD" >> keystore.properties
./gradlew build coverageReport sonarqube uploadToAppSweepRelease --no-daemon
./gradlew build coverageReport sonarqube uploadToAppSweepRelease --no-daemon --no-configuration-cache
cp app/build/outputs/apk/release/*.apk mealient-release.apk
- name: Upload signed APK