Yes, you can set the release note for a build in Xcode Cloud directly from the build process itself.
To set the release note for a build in Xcode Cloud, you can use the xcodebuild command-line tool, which is included in Xcode. When you run xcodebuild to create an archive, you can pass the XCODE_CLOUD_BUILD_NOTES environment variable to set the release notes for the build.
Here's an example command to create an archive with a release note using xcodebuild:
xcodebuild archive -workspace MyWorkspace.xcworkspace -scheme MyScheme -archivePath MyArchive.xcarchive XCODE_CLOUD_BUILD_NOTES="This is my release note"
In this example, the XCODE_CLOUD_BUILD_NOTES environment variable is set to "This is my release note".
This will be the release note that appears in the build details in Xcode Cloud.
Note that you can also set the XCODE_CLOUD_BUILD_NOTES environment variable in Xcode itself, by adding it to the "Environment Variables" section of your Xcode scheme's run configuration.
Topic:
Developer Tools & Services
SubTopic:
Xcode Cloud
Tags: