[CHORE] Preserve Framework dsym as publish action artifact#59
Merged
sbarrio merged 1 commit intoJun 29, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the NuGet publish workflow to preserve the iOS native framework debug symbols (DatadogWrapper.framework.dSYM) as a downloadable GitHub Actions artifact, supporting post-release manual re-uploads without rebuilding the SDK.
Changes:
- Uploads the generated iOS wrapper dSYM directory (
bindings/Datadog.iOS.Binding/NativeReference/dSYMs/) as a separate workflow artifact. - Keeps the existing NuGet package artifact upload unchanged.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
rgaignault
approved these changes
Jun 26, 2026
sbarrio
deleted the
sbarrio/chore/preserve-framework-dsym-on-publish-action
branch
June 29, 2026 07:35
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
It adds the generated DatadogWrapper.framework dSym file to the publish action artifact list, so it can be downloaded and preserved separately alongisde the nuget packages after the publish action has run.
Motivation
This way we can reupload the dsym manually if anything goes wrong during the release without having to recompile the whole module.