Conversation
dotnet nuget push 不做 glob 扩展,把 "artifacts/nuget/*.nupkg" 整个当成文件名 去找,报 "File does not exist"。1.0.0-preview.1 的首发就是卡在这最后一步 —— run 32107624064 里 Test / Pack / 冒烟 / Trusted Publishing 换密钥全部成功, upload-artifact 也确认了 artifacts/nuget 下有 8 个文件,只有推送空手而归。 改成 Get-ChildItem 展开后逐个推送,并对"一个都没找到"显式报错。 .snupkg 仍由 dotnet nuget push 在推同名 .nupkg 时顺带带上。 本地以文件夹源复现并验证:glob 形式必失败,逐个形式五个包全部推送成功。 Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
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.
dotnet nuget push不做 glob 扩展,把"artifacts/nuget/*.nupkg"整个当成文件名去找,直接error: File does not exist。run 32107624064(标签
sdk-v1.0.0-preview.1触发的首发)里:同一次运行的 upload-artifact 确认
artifacts/nuget下有 8 个文件 —— 包是打出来了的,纯粹是推送这一步没找到。改成
Get-ChildItem展开后逐个推送,并对"一个都没找到"显式报错。.snupkg仍由dotnet nuget push在推同名.nupkg时顺带带上。本地以文件夹源复现验证:glob 形式报同样的错,逐个形式五个包全部推送成功。
🤖 Generated with Claude Code