Yesterday builds worked fine, today they do not, even building the exact same source (same tag), with no changes to the Xcode Cloud workflow or anything else.
Code Signing
IDEDistributionIssueSeverity=3, NSLocalizedDescription=Automatic signing cannot update bundle identifier "x.y.z"., NSLocalizedRecoverySuggestion=Automatic signing cannot update your registered bundle identifier to enable . Update your bundle identifier on https://developer.apple.com/account and then try again.
The logs show this:
Run command: 'xcodebuild -exportArchive -archivePath /Volumes/workspace/tmp/5655f7e3-ccb2-4556-b4cb-70a3a0e6bae8.xcarchive -exportPath /Volumes/workspace/appstoreexport -exportOptionsPlist /Volumes/workspace/ci/app-store-exportoptions.plist '-DVTPortalRequest.Endpoint=http://172.16.62.130:8089' -DVTProvisioningIsManaged=YES -IDEDistributionLogDirectory=/Volumes/workspace/tmp/app-store-export-archive-logs -DVTSkipCertificateValidityCheck=YES -DVTServicesLogLevel=3'
Command exited with non-zero exit-code: 70
Is anyone else having this problem? Suggestions for fixing it?
Post
Replies
Boosts
Views
Activity
Looking at the recently updated documentation for @StateObject,, it still shows this pattern when creating a StateObject in an initializer:
_model = StateObject(wrappedValue: { DataModel(name: name) }())
But isn't the following equivalent, even preferred, since wrappedValue is marked @autoclosure?
_model = StateObject(wrappedValue: DataModel(name: name))