"extends" feature for submit in eas.json

Configuration:

  • Managed workflow
  • eas-cli/0.37.0 win32-x64 node-v14.18.1

It would be nice to have the same “extends” feature of build for submit in eas.json.
I’ve tried with this code:

{
  "cli": {
    "version": ">= 0.37.0"
  },
  "submit": {
    "baseSubmit": {
      "android": {
        "serviceAccountKeyPath": "./expo-apps.json",
        "track": "beta"
      },
      "ios": {
        "appleId": "my@mail.com",
        "appleTeamId": "XXXXXXXXXX",
        "language": "it-IT"
      }
    },
    "informatica-new": {
      "extends": "base-submit",
      "ios": {
        "ascAppId": "11111111"
      }
    }
  }
}

but I got this error:

eas.json is not valid [ValidationError: "submit.informatica-new.extends" is not allowed]

support for this was released in eas-cli@0.38.2

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.