You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use unique artifact names in test workflow and address review comments
- Add ArtifactName input to action.yml (default: module) so callers can specify the artifact name for download-artifact
- Update Action-Test.yml to use unique artifact names (module-default, module-prerelease, module-unstamped) per job to avoid upload-artifact v7 name collision across parallel jobs
- Add -PathType Container to Test-Path for module directory validation
- Wrap Import-PowerShellDataFile in try/catch with actionable error message
- Remove redundant notesFilePath cleanup after finally block
Copy file name to clipboardExpand all lines: action.yml
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,10 @@ inputs:
37
37
description: When enabled along with UsePRBodyAsReleaseNotes, the release notes will begin with the pull request title as a H1 heading followed by the pull request body. The title will reference the pull request number.
38
38
required: false
39
39
default: 'true'
40
+
ArtifactName:
41
+
description: Name of the uploaded artifact to download. Must match the name used in the upstream upload-artifact step.
0 commit comments