I am posting this here because my cloud build is succeeding and pushing content to my UCD bucket and creating a release successfully.
Despite everything looking good using the URI for the bucket returns a 404 for all my asset paths. I have manually tested a get on these paths and gotten a 404.
This is happening for both release and “latest” badge URI.
I have tested a get on the same bucket with a release I manually created using the CLI and receive 200s.
It seems there is something silently broken with the integration.
So it looks like there are files in the bucket, but it’s only a set of asset bundles, the manifest, and hash file. I was able to download a few of the files properly. Are you expecting the actual assets as well as the asset bundles?
Hey, we had the same issues. The reason was that the path to the actual asset bundle was prefixed with “ServerData/” when the addressables was uploaded to the target bucket, but the client tried to load it from path “Android/” or “iOS/”.
So the key to solve it was to add to the end of RemoteLoadPath “path=ServerData/[BuildTarget]”.
Previously it was “path=[BuildTarget]”