EAS Submit - How to set release name in Google Play Console

When submitting new app versions to the internal track, the release name is always just the version number, which doesn’t change. I would expect it to behave the same way as a manual submit, which uses both the build number and version. Example: (27) 1.0

It might be my eas config, but I can not find out how to configure it correctly.

{
  "cli": {
    "version": ">= 0.42.4"
  },
  "build": {
    "development": {
      "developmentClient": true,
      "distribution": "internal"
      }
    },
    "preview": {
      "distribution": "internal"
    },
    "production": {}
  },
  "submit": {
    "production": {
      "android": {
        "serviceAccountKeyPath": "./sa.json",
        "track": "internal"
      },
      "ios": {
        "appleId": "----@--------",
        "appleTeamId": "------------",
        "ascAppId": "-------------",
        "companyName": "-----------"
      }
    }
  }
}