mirror of
https://github.com/bitwarden/mobile.git
synced 2024-12-02 13:13:31 +01:00
20 lines
1.1 KiB
PowerShell
20 lines
1.1 KiB
PowerShell
$rootPath = $env:GITHUB_WORKSPACE;
|
|
|
|
$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)"
|