mirror of
https://github.com/bitwarden/mobile
synced 2025-01-22 14:40:05 +01:00
6 lines
206 B
PowerShell
6 lines
206 B
PowerShell
$rootPath = $env:GITHUB_WORKSPACE;
|
|
$ipaPath = "$rootPath/Bitwarden.ipa"
|
|
|
|
xcrun altool --upload-app --type ios --file "$ipaPath" `
|
|
--username "$env:APPLE_ID_USERNAME" --password "$env:APPLE_ID_PASSWORD"
|