We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 926a8b4 commit 9686d88Copy full SHA for 9686d88
.github/workflows/release.yml
@@ -68,14 +68,14 @@ jobs:
68
chmod +x gradlew
69
if [ -f "app/release.keystore" ]; then
70
./gradlew assembleRelease \
71
- --no-daemon --parallel \
+ --no-daemon --parallel --build-cache \
72
-PMYAPP_UPLOAD_STORE_FILE=release.keystore \
73
-PMYAPP_UPLOAD_STORE_PASSWORD=$ANDROID_STORE_PASSWORD \
74
-PMYAPP_UPLOAD_KEY_ALIAS=$ANDROID_KEY_ALIAS \
75
-PMYAPP_UPLOAD_KEY_PASSWORD=$ANDROID_KEY_PASSWORD
76
else
77
echo "No keystore found, building with debug signing (or default config)"
78
- ./gradlew assembleRelease --no-daemon --parallel
+ ./gradlew assembleRelease --no-daemon --parallel --build-cache
79
fi
80
81
- name: Create Release
0 commit comments