0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

eas-buildで--localの時のsubmitでデプロイしてくれない。

Posted at

eas buildの時にいい感じにsubmitしてくれない

環境

version
eas-cli: 3.14.0
expo-cli: 5.4.12
node: v16.15.1
npm: 8.11.0

起こったこと

以下のコマンドを打ったら、appstoreconnectへデプロイしてくれると思うじゃないですか。
でも、デプロイしてくれないんですよ。

bash
eas build --platform ios --local
## build log...
eas submit --platform ios --latest
## submit log...

解決策

ローカルビルド時はpathを都度打たないといけないっぽい

bash
eas build --platform ios --local
eas submit --platform ios --path $(ls -rt *.ipa | tail -n 1)
## ls -rt *.ipa | tail -n 1でipaファイルの最新のファイル名を取得する
fish
## fishならこうだと思う。未検証だから誰か頼む!
eas build --platform ios --local
eas submit --platform ios --path (ls -rt *.ipa | tail -n 1)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?