2020-06-08 19:14:10 +03:00
|
|
|
|
$rootPath = $env:GITHUB_WORKSPACE;
|
|
|
|
|
|
2020-06-09 18:41:03 +03:00
|
|
|
|
$decryptSecretPath = $($rootPath + "\.github\scripts\decrypt-secret.ps1");
|
2020-06-08 19:56:58 +03:00
|
|
|
|
|
2020-06-08 19:14:10 +03:00
|
|
|
|
$appKeystorePlayFilename = "app_play-keystore.jks";
|
|
|
|
|
$appKeystorePlayPath = $($rootPath + "\src\Android\$appKeystorePlayFilename");
|
|
|
|
|
$appKeystoreUploadFilename = "app_upload-keystore.jks";
|
|
|
|
|
$appKeystoreUploadPath = $($rootPath + "\src\Android\$appKeystoreUploadFilename");
|
|
|
|
|
$appKeystoreFdroidFilename = "app_fdroid-keystore.jks";
|
|
|
|
|
$appKeystoreFdroidPath = $($rootPath + "\src\Android\$appKeystoreFdroidFilename");
|
|
|
|
|
$googleServicesFilename = "google-services.json";
|
|
|
|
|
$googleServicesPath = $($rootPath + "\src\Android\$googleServicesFilename");
|
|
|
|
|
|
|
|
|
|
Invoke-Expression `
|
|
|
|
|
"& `"$decryptSecretPath`" -filename $($appKeystorePlayFilename + ".gpg") -output $($appKeystorePlayPath)"
|
|
|
|
|
Invoke-Expression `
|
|
|
|
|
"& `"$decryptSecretPath`" -filename $($appKeystoreUploadFilename + ".gpg") -output $($appKeystoreUploadPath)"
|
|
|
|
|
Invoke-Expression `
|
|
|
|
|
"& `"$decryptSecretPath`" -filename $($appKeystoreFdroidFilename + ".gpg") -output $($appKeystoreFdroidPath)"
|
|
|
|
|
Invoke-Expression `
|
|
|
|
|
"& `"$decryptSecretPath`" -filename $($googleServicesFilename + ".gpg") -output $($googleServicesPath)"
|
2020-06-09 17:21:46 +03:00
|
|
|
|
Invoke-Expression "& `"$decryptSecretPath`" -filename play_creds.json.gpg"
|