【オボエガキ】bitriseでUnityをBuildしたら通らなかった

bitriseでUnityプロジェクトをビルドしたい。
こちらを参考にしてbitrise.ymlを作成(要所にあるバージョンはアップデート、$UNITY_SERIAL、$UNITY_EMAIL、$UNITY_PWは下記画像を参考にして設定)してbuildしたが、"Activate Unity"で下記のエラーが出て通らない。

DisplayProgressbar: Unity Package Manager
[Package Manager] Done resolving packages in 0.27s seconds
[Package Manager] Failed to resolve packages: [Packages] directory does not exist. No packages loaded.

A re-import of the project may be required to fix the issue or a manual modification of Packages/manifest.json file.
[Package Manager] Server::Kill – Server was shutdown

PackageManagerなんて使ってないのに何故…

とりあえず今回はPackageManagerを使う予定はないので、「-noUpm」オプションを付けて回避することにした。

/Applications/Unity/Unity.app/Contents/MacOS/Unity -quit batchmode -serial $UNITY_SERIAL -username $UNITY_EMAIL -password $UNITY_PW -logfile

/Applications/Unity/Unity.app/Contents/MacOS/Unity -quit -noUpm -batchmode -serial $UNITY_SERIAL -username $UNITY_EMAIL -password $UNITY_PW -logfile