Hello Friends,
I am trying to upload addressables to s3 after build, I succeeded doing it in this function
[PostProcessBuild]
public static void OnPostprocessBuild
but when I set up cloud build to make content only build (addressables only) this doesn’t happen
I tried this script
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DeploymentScript : MonoBehaviour
{
public static void PostExportFunction(string packageUrl)
{
Debug.Log("Package URL is : "+ packageUrl);
}
}
and I assigned it like I showed you in the photo , but it doesn’t happen
