bitwarden-android/.github/scripts/ios/deploy-app-store.ps1

6 lines
206 B
PowerShell
Raw Normal View History

2020-06-10 18:32:16 +03:00
$rootPath = $env:GITHUB_WORKSPACE;
2020-06-10 19:24:52 +03:00
$ipaPath = "$rootPath/Bitwarden.ipa"
2020-06-10 18:32:16 +03:00
2020-06-10 18:48:02 +03:00
xcrun altool --upload-app --type ios --file "$ipaPath" `
--username "$env:APPLE_ID_USERNAME" --password "$env:APPLE_ID_PASSWORD"