The only answer that is working is one from @karim above. Sadly, i don't yet have enough reputations to upvote it.
Here is my complete build configuration.
Foir those who want to know why the regexpp with *.aab : Expo generate two files. An apk and an aab. The APK contains debug information and is the one which is chosen while submitting. I suspect some alphabetical order that explain why the aab is not selected by default. Thus the regexp
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"channel": "development"
},
"release": {
"developmentClient": false,
"distribution": "internal",
"channel": "development"
},
"preview": {
"distribution": "internal",
"channel": "preview"
},
"production": {
"ios": {
"image": "macos-monterey-12.6-xcode-14.1"
},
"channel": "production",
"android": {
"buildType": "app-bundle",
"applicationArchivePath": "android/app/build/outputs/**/*.aab"
}
}
}