How to get dSym files after eas build to troubleshoot runtime crash reports?

I have a react native managed workflow app. Expo SDK 47, eas-cli 3.7.1

On first submit of the app to testflight it crashes on splash screen.

Apple have sent me 2 crash reports and I read you need the dSym files to beable to symbolicate
the reports.

Googling I find that I need to put. “buildArtifactPaths”: [“ios/build/*”] into my eas json.

But this doesnt work as I should be able to download the files from app store connect app page, TestFlight, Build Metadata tab, then Includes Symbols area.

This is my full eas.json

{
  "cli": {
    "version": ">= 3.6.1",
    "promptToConfigurePushNotifications": false
  },
  "build": {
    "development": {
      "developmentClient": true,
      "distribution": "internal",
      "ios": {
        "resourceClass": "m1-medium",
        "buildArtifactPaths": ["ios/build/*"]
      }
    },
    "preview": {
      "distribution": "internal",
      "ios": {
        "resourceClass": "m1-medium"
      }
    },
    "production": {
      "ios": {
        "resourceClass": "m1-medium",
        "buildArtifactPaths": ["ios/build/*"]
      }
    }
  },
  "submit": {
    "production": {}
  }
  
}