mirror of
https://github.com/bitwarden/mobile
synced 2026-01-04 01:23:15 +00:00
6 lines
215 B
PowerShell
6 lines
215 B
PowerShell
$rootPath = $env:GITHUB_WORKSPACE;
|
|
$ipaPath = "$rootPath/com.8bit.bitwarden.ipa"
|
|
|
|
xcrun altool --upload-app --type ios --file "$ipaPath" `
|
|
--username "$env:APPLE_ID_USERNAME" --password "$env:APPLE_ID_PASSWORD"
|