Skip to content

Commit b58333e

Browse files
StevenTCramerclaude
andcommitted
Fix NuGet push to use explicit package name pattern
Update CI/CD workflow to push only the main NuGet package by using the explicit TimeWarp.SourceGenerators.*.nupkg pattern. This prevents the error caused by attempting to push symbol packages (.snupkg) that don't contain actual symbol files. Follows the same pattern used by timewarp-state for handling package publishing. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent ae6c660 commit b58333e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- name: 🚀 Publish to NuGet.org (Releases only)
9191
if: github.event_name == 'release'
9292
run: |
93-
dotnet nuget push source/timewarp-source-generators/bin/Release/*.nupkg `
93+
dotnet nuget push source/timewarp-source-generators/bin/Release/TimeWarp.SourceGenerators.*.nupkg `
9494
--api-key ${{ secrets.PUBLISH_TO_NUGET_ORG }} `
9595
--source https://api.nuget.org/v3/index.json `
9696
--skip-duplicate

0 commit comments

Comments
 (0)