diff --git a/.github/scripts/android/deploy-play.ps1 b/.github/scripts/android/deploy-play.ps1 index 96a65ba8f..fa5632fb0 100644 --- a/.github/scripts/android/deploy-play.ps1 +++ b/.github/scripts/android/deploy-play.ps1 @@ -1,5 +1,5 @@ $rootPath = $env:GITHUB_WORKSPACE; -$homePath = $env:HOME; +$homePath = "~"; $publisherPath = $($rootPath + "/store/google/Publisher/bin/Release/netcoreapp2.0/Publisher.dll"); $credsPath = $($homePath + "/secrets/play_creds.json"); diff --git a/.github/scripts/decrypt-secret.ps1 b/.github/scripts/decrypt-secret.ps1 index 8ce7b6651..971d99fa7 100644 --- a/.github/scripts/decrypt-secret.ps1 +++ b/.github/scripts/decrypt-secret.ps1 @@ -4,7 +4,7 @@ [string] $output ) -$homePath = $env:HOME +$homePath = "~" Write-Output "Home path is: '$homePath'" diff --git a/.github/scripts/ios/setup-keychain.ps1 b/.github/scripts/ios/setup-keychain.ps1 index f387a644a..8f7e05a83 100644 --- a/.github/scripts/ios/setup-keychain.ps1 +++ b/.github/scripts/ios/setup-keychain.ps1 @@ -1,4 +1,4 @@ -$homePath = $env:HOME; +$homePath = "~"; $secretsPath = $homePath + "/secrets" $mobileKeyPath = $($secretsPath + "/bitwarden-mobile-key.p12"); diff --git a/.github/scripts/ios/setup-profiles.ps1 b/.github/scripts/ios/setup-profiles.ps1 index 7168e31af..bc997b9f9 100644 --- a/.github/scripts/ios/setup-profiles.ps1 +++ b/.github/scripts/ios/setup-profiles.ps1 @@ -1,4 +1,4 @@ -$homePath = $env:HOME; +$homePath = "~"; $secretsPath = $homePath + "/secrets" $autofillProfilePath = $($secretsPath + "/dist_autofill.mobileprovision");