How to use custom Xcode Cloud environment variables?
We have these environment variables within the Xcode Scheme Which works well locally with this code let webHost = ProcessInfo.processInfo.environment["HOST_URL"]! let apiHost = ProcessInfo.processInfo.environment["API_URL"]! let beamsKey = ProcessInfo.processInfo.environment["BEAMS_KEY"]! let mixpanelKey = ProcessInfo.processInfo.environment["MIXPANEL_KEY"]! However, when deploying using Xcode Cloud with the…