1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-06 05:17:59 +02:00
bitwarden-mobile/.github/scripts/ios/export-ipa.ps1
2020-06-10 12:24:52 -04:00

19 lines
637 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