Can't see my build on website

Hi,

I’m trying to publish my project on both android and ios, like i’ve done multiple times with other projects.
I can see and run the published project in expo app but there’s no build on expo website…

Here’s my app.json:

{
  "expo": {
    "name": "NAME OF APP",
    "slug": "NAMEOFAPP",
    "privacy": "public",
    "platforms": [
      "ios",
      "android",
      "web"
    ],
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/images/app-icon.png",
    "splash": {
      "image": "./assets/images/loginPageLogo01.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "updates": {
      "fallbackToCacheTimeout": 0
    },
    "assetBundlePatterns": [
      "**/*"
    ],
    "ios": {
      "supportsTablet": true
    },
    "description": ""
  }
}

Any idea ? Thanks

When you run build command by default publish is also triggered, but not the other way around.

You can read more here
https://docs.expo.io/versions/latest/workflow/publishing/
https://docs.expo.io/versions/latest/distribution/building-standalone-apps/#3-start-the-build

Ho okay thanks, i skipped this info. It works :smiley:

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