mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-02-04 14:53:17 +00:00
Refactor Android CI workflow to use Nix actions and improve translation file collection
Some checks failed
Android / build (push) Failing after 6m12s
Some checks failed
Android / build (push) Failing after 6m12s
This commit is contained in:
parent
49bc90c00c
commit
050cd7b876
3 changed files with 127 additions and 22 deletions
|
|
@ -23,10 +23,17 @@ if (flutterVersionName == null) {
|
|||
}
|
||||
|
||||
def keystoreProperties = new Properties()
|
||||
// Prefer root key.properties, but fall back to android/key.properties if present (CI may place it there)
|
||||
def keystorePropertiesFile = rootProject.file('key.properties')
|
||||
if (!keystorePropertiesFile.exists()) {
|
||||
def alt = rootProject.file('android/key.properties')
|
||||
if (alt.exists()) {
|
||||
keystorePropertiesFile = alt
|
||||
}
|
||||
}
|
||||
if (keystorePropertiesFile.exists()) {
|
||||
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
namespace "inventree.inventree_app"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue