expoを使ってリリース作業をしていたところ、何やら失敗してしまいました。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$ 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... <span class="bold">Cannot start a new build, as there is already an in-progress build.</span> |
調べてみたところ、expoで同時にビルドできるのは一つまでで、前回のビルドが正常に終わっていなかったため出来なかったようです。
expoの管理画面に移動して、ビルド中になっているプロセスを消したら正常にリリース作業ができました。
コメント