Is there a way to build apk and bundle in the same time?

I build my android app bundle with ionic cordova build --release android --prod
I know i can build the apk with ionic cordova build --debug android --prod
But is there a way to build apk and bundle in the same time?

I tried with ionic cordova build --debug --release android --prod but only the bundle is built

You could concatenate two commands together with &&.

ionic cordova build android --prod --debug && ionic cordova build android --prod --no-build -release