mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
19 lines
No EOL
639 B
PowerShell
19 lines
No EOL
639 B
PowerShell
param (
|
|
[Parameter(Mandatory=$true)]
|
|
[string] $method
|
|
)
|
|
|
|
$rootPath = $env:GITHUB_WORKSPACE;
|
|
$homePath = Resolve-Path "~" | Select-Object -ExpandProperty Path
|
|
|
|
$exportOptionsPath = "$rootPath/.github/resources/export-options-$method.plist";
|
|
$archiveBasePath = "$homePath/Library/Developer/Xcode/Archives/*";
|
|
$archivePath = "$archiveBasePath/*.xcarchive";
|
|
$exportPath = "$archiveBasePath/ipa-export";
|
|
$ipaPath = "$exportPath/Bitwarden.ipa";
|
|
$destIpaPath = "$rootPath/Bitwarden.ipa";
|
|
|
|
xcodebuild -exportArchive -archivePath $archivePath -exportPath $exportPath -exportOptionsPlist $exportOptionsPath
|
|
|
|
Copy-Item $ipaPath $destIpaPath
|
|
ls |