mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
9 lines
556 B
PowerShell
9 lines
556 B
PowerShell
$rootPath = $env:GITHUB_WORKSPACE;
|
|
|
|
$decryptSecretPath = $($rootPath + "/.github/scripts/decrypt-secret.ps1");
|
|
|
|
Invoke-Expression "& `"$decryptSecretPath`" -filename bitwarden-mobile-key.p12.gpg"
|
|
Invoke-Expression "& `"$decryptSecretPath`" -filename iphone-distribution-cert.p12.gpg"
|
|
Invoke-Expression "& `"$decryptSecretPath`" -filename dist_autofill.mobileprovision.gpg"
|
|
Invoke-Expression "& `"$decryptSecretPath`" -filename dist_bitwarden.mobileprovision.gpg"
|
|
Invoke-Expression "& `"$decryptSecretPath`" -filename dist_extension.mobileprovision.gpg"
|