mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
export ipa for app store
This commit is contained in:
24
.github/scripts/ios/export-ipa.ps1
vendored
Normal file
24
.github/scripts/ios/export-ipa.ps1
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
param (
|
||||
[Parameter(Mandatory=$true)]
|
||||
[string] $method
|
||||
)
|
||||
|
||||
$rootPath = $env:GITHUB_WORKSPACE;
|
||||
$resourcesPath = "$rootPath/.github/resources";
|
||||
$exportOptionsPath = "$resourcesPath/export-options-$method.plist";
|
||||
$homePath = Resolve-Path "~" | Select-Object -ExpandProperty Path
|
||||
$archivesPath = "$homePath/Library/Developer/Xcode/Archives";
|
||||
|
||||
cd $archivesPath
|
||||
cd *
|
||||
ls
|
||||
|
||||
xcodebuild -exportArchive -archivePath *.xcarchive -exportPath com.8bit.bitwarden.ipa -exportOptionsPlist $exportOptionsPath
|
||||
|
||||
ls
|
||||
|
||||
$destPath = "$rootPath/com.8bit.bitwarden.ipa"
|
||||
Copy-Item com.8bit.bitwarden.ipa $destPath
|
||||
|
||||
cd $rootPath
|
||||
ls
|
||||
Reference in New Issue
Block a user