mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
try unlocking keychain
This commit is contained in:
parent
8f1db25c5c
commit
dc374c7ce9
2 changed files with 6 additions and 0 deletions
4
.github/scripts/ios/build.ps1
vendored
4
.github/scripts/ios/build.ps1
vendored
|
@ -4,6 +4,10 @@
|
||||||
[string] $platform = "iPhone"
|
[string] $platform = "iPhone"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
security default-keychain -s build.keychain
|
||||||
|
security unlock-keychain -p $env:KEYCHAIN_PASSWORD build.keychain
|
||||||
|
security set-key-partition-list -S apple-tool:,apple: -s -k $env:KEYCHAIN_PASSWORD build.keychain
|
||||||
|
|
||||||
$rootPath = $env:GITHUB_WORKSPACE;
|
$rootPath = $env:GITHUB_WORKSPACE;
|
||||||
$iosPath = $($rootPath + "/src/iOS/iOS.csproj");
|
$iosPath = $($rootPath + "/src/iOS/iOS.csproj");
|
||||||
|
|
||||||
|
|
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -158,3 +158,5 @@ jobs:
|
||||||
- name: Build for App Store
|
- name: Build for App Store
|
||||||
run: ./.github/scripts/ios/build.ps1 -configuration AppStore -platform iPhone
|
run: ./.github/scripts/ios/build.ps1 -configuration AppStore -platform iPhone
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
KEYCHAIN_PASSWORD: ${{ secrets.IOS_KEYCHAIN_PASSWORD }}
|
||||||
|
|
Loading…
Reference in a new issue