🔨
Expo で Authentication with Apple Developer Portal failed
数週間ぶりに expo のプロジェクトをローカルビルドしたら失敗するようになっていました。 エラーメッセージには Authentication with Apple Developer Portal failed!
とあり、Apple Developer の認証でダメなようです。
$ eas build --platform ios --local
<中略>
✔ Do you want to log in to your Apple account? … yes
› Log in to your Apple Developer account to continue
✔ Apple ID: … <email address>
› Using password for <email address> from your local Keychain
Learn more
✖ Logging in...
Authentication with Apple Developer Portal failed!
Received an internal server error from Apple's App Store Connect / Developer Portal servers, please try again later
Error: build command failed.
エラーが発生したプロジェクトの各種バージョン
-
expo
v51.0.38 -
node
v18.18.2 -
CocoaPods
v1.15.2
解決方法
eas-cli
をアップデートすることで解決しました。
$ npm i -g eas-cli
Discussion