fix: 修正 keystore 路径为相对路径
Android Release / release (push) Failing after 24s

This commit is contained in:
amos
2026-06-02 23:23:09 +08:00
parent b71b03cee8
commit 30f336a3bc
+2 -2
View File
@@ -16,7 +16,7 @@ android {
signingConfigs { signingConfigs {
release { release {
storeFile file('/root/.android/release.keystore') storeFile file('release.keystore')
storePassword System.getProperty('KEYSTORE_PASSWORD') storePassword System.getProperty('KEYSTORE_PASSWORD')
keyAlias System.getProperty('KEY_ALIAS') keyAlias System.getProperty('KEY_ALIAS')
keyPassword System.getProperty('KEY_PASSWORD') keyPassword System.getProperty('KEY_PASSWORD')
@@ -40,4 +40,4 @@ android {
} }
dependencies { dependencies {
} }