EAS Update doesn't work

I am trying to perform some OTA updates for my IOS app, but no matter what I do, the updates never air (I’m testing on TestFlight). I use eas update for this and everything seems to go smoothly but it never updates the app in testflight, I am having to make new builds every single time. Here’s my eas.json

{
  "cli": {
    "version": ">= 3.1.1"
  },
  "build": {
    "development": {
      "distribution": "internal",
      "android": {
        "gradleCommand": ":app:assembleDebug"
      },
      "ios": {
        "buildConfiguration": "Debug"
      },
      "channel": "development"
    },
    "preview": {
      "distribution": "internal",
      "channel": "preview",
      "android":{
        "buildType": "apk"
      },
      "ios": {
        "simulator": true
      }
    },
    "production": {
      "channel": "production"
    }
    
  },
  "submit": {
    "production": {
      "ios": {
        "appleId":"",
        "ascAppId": "",
        "appleTeamId": ""
      }
    }
  }
}

And here’s my app.json

{
  "expo": {
    "name": "Lyckli",
    "slug": "Lyckli",
    "version": "1.1.7",
    "orientation": "portrait",
    "assetBundlePatterns": [
      "**/*"
    ],
    "icon": "./asset/logoThumbnail.png",
    "scheme": "com.lyckliapp.lyckli",
    "updates": {
      "fallbackToCacheTimeout": 0,
      "enabled": true,
      "url": "https://u.expo.dev/7a819f86-e4ad-48c8-a3ad-795d647d41da"
    },
    "ios": {
      "supportsTablet": true,
      "bundleIdentifier": "com.lyckliapp.lyckli",
      "buildNumber": "3"
    },
    "android": {
      "adaptiveIcon": {
        "foregroundImage": "./asset/logoThumbnail.png",
        "backgroundColor": "#FFFFFF"
      },
      "package": "com.lyckliapp.lyckli",
      "versionCode": 21
    },
    "extra": {
      "eas": {
        "projectId": "projectId"
      },
      "API_URL": "api_url"
    },
    "runtimeVersion": {
      "policy": "sdkVersion"
    }
  },
  "name": "Lyckli"
}

Any help will be greatly appreciated!

hi there! this guide seems to be written just for you! Debugging EAS Update - Expo Documentation