expo run:ios fails on metro launch on bareworkflow

Hi,

I am developing on expo bareworkflow on sdk45.
I have split schemes into 3 cases like following

// Podfile
project 'myProject', {
	'devDebug'=> :debug,
	'stgDebug'=> :debug,
	'prodDebug'=> :debug,
	...

if I use react-native run-ios, app runs on iOS simulator without any problems.
But when I use expo run:ios, app compiles but fails on metro launch

My command is like this

expo run:ios  --scheme myProjectDev --configuration devDebug

And the error message is

› Opening on iPhone 13 (com.myProject.dev)
› Opening myProject://expo-development-client/?url=http%3A%2F%2F192.168.1.42%3A8081 on iPhone 13
Error: Build configuration 'Release' does not exist in list with id '13B07F931A680F5B00A75B9A'
error Command failed with exit code 1.

I would appreciate any advice you could give me.