Skip to content

Commit b239a33

Browse files
authored
Merge pull request #2 from yevhen/claude/fix-nuget-publish-Lk9RA
Fix NuGet publish glob matching both packages
2 parents 270c141 + a6817a1 commit b239a33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ jobs:
8181
--source https://api.nuget.org/v3/index.json \
8282
--skip-duplicate
8383
84-
# Publish main package git (depends on Runtime)
84+
# Publish main package (depends on Runtime)
8585
echo "Publishing SharpAssert (main package)..."
86-
dotnet nuget push ./packages/SharpAssert.*.nupkg \
86+
dotnet nuget push ./packages/SharpAssert.[0-9]*.nupkg \
8787
--api-key ${{ secrets.NUGET_API_KEY }} \
8888
--source https://api.nuget.org/v3/index.json \
8989
--skip-duplicate

0 commit comments

Comments
 (0)