expoを使ってリリース作業をしていたところ、何やら失敗してしまいました。
$ expo build:android --release-channel=production
┌──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│ │
│ There is a new version of expo-cli available (3.15.4). │
│ You are currently using expo-cli 3.13.5 │
│ Install expo-cli globally using the package manager of your choice; for example: `npm install -g expo-cli` to get the latest version │
│ │
└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
Checking if there is a build in progress...
Cannot start a new build, as there is already an in-progress build.
調べてみたところ、expoで同時にビルドできるのは一つまでで、前回のビルドが正常に終わっていなかったため出来なかったようです。
expoの管理画面に移動して、ビルド中になっているプロセスを消したら正常にリリース作業ができました。
コメント