bug: artifact path issues #3650
Merged
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.
Summary
Fix artifact extraction path when downloading a single artifact by
artifact-ids
.Previously, the artifact was extracted to a subdirectory (e.g.,
dist/dist
). This PR setsmerge-multiple: true
so the artifact is extracted directly to the target folder, matching the behavior when downloading by name.Details
artifact-ids
with a single artifact, the default behavior created a nested folder (e.g.,dist/dist
).merge-multiple: true
ensures the artifact contents are placed directly in the specified directory (e.g.,dist/
), keeping behavior consistent with single artifact downloads by name.This change prevents unwanted extra directory nesting and makes the download experience the same whether using
name
orartifact-ids
for a single artifact.related: #3648