mirror of
https://github.com/bitwarden/android.git
synced 2025-01-12 11:17:30 +03:00
fix pathing
This commit is contained in:
parent
707a6ecbaa
commit
99b2cd2ad0
2 changed files with 2 additions and 2 deletions
2
.github/scripts/android/decrypt-secrets.ps1
vendored
2
.github/scripts/android/decrypt-secrets.ps1
vendored
|
@ -1,6 +1,6 @@
|
||||||
$rootPath = $env:GITHUB_WORKSPACE;
|
$rootPath = $env:GITHUB_WORKSPACE;
|
||||||
|
|
||||||
$decryptSecretPath = $($rootPath + ".\.github\scripts\decrypt-secret.ps1");
|
$decryptSecretPath = $($rootPath + "\.github\scripts\decrypt-secret.ps1");
|
||||||
|
|
||||||
$appKeystorePlayFilename = "app_play-keystore.jks";
|
$appKeystorePlayFilename = "app_play-keystore.jks";
|
||||||
$appKeystorePlayPath = $($rootPath + "\src\Android\$appKeystorePlayFilename");
|
$appKeystorePlayPath = $($rootPath + "\src\Android\$appKeystorePlayFilename");
|
||||||
|
|
2
.github/scripts/ios/decrypt-secrets.ps1
vendored
2
.github/scripts/ios/decrypt-secrets.ps1
vendored
|
@ -1,6 +1,6 @@
|
||||||
$rootPath = $env:GITHUB_WORKSPACE;
|
$rootPath = $env:GITHUB_WORKSPACE;
|
||||||
|
|
||||||
$decryptSecretPath = $($rootPath + ".\.github\scripts\decrypt-secret.ps1");
|
$decryptSecretPath = $($rootPath + "\.github\scripts\decrypt-secret.ps1");
|
||||||
|
|
||||||
Invoke-Expression "& `"$decryptSecretPath`" -filename bitwarden-mobile-key.p12.gpg"
|
Invoke-Expression "& `"$decryptSecretPath`" -filename bitwarden-mobile-key.p12.gpg"
|
||||||
Invoke-Expression "& `"$decryptSecretPath`" -filename iphone-distribution-cert.p12.gpg"
|
Invoke-Expression "& `"$decryptSecretPath`" -filename iphone-distribution-cert.p12.gpg"
|
||||||
|
|
Loading…
Reference in a new issue