Skip to content

Commit db54890

Browse files
davidkallesenclaude
andcommitted
fix: remove invalid 'true' argument from --no-symbols flag
The --no-symbols flag is a boolean switch that doesn't accept a value. When 'true' was passed, dotnet interpreted it as a file path to push, causing "File does not exist (true)" error after successful package push. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 24ea546 commit db54890

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ jobs:
5353
run: dotnet pack -c Release --no-restore -o ${GITHUB_WORKSPACE}/packages -p:RepositoryBranch=$BRANCH_NAME /p:PublicRelease=true
5454

5555
- name: 📦 Push packages to NuGet
56-
run: dotnet nuget push ${GITHUB_WORKSPACE}/packages/Atc.Rest.Client.${{ env.NBGV_NuGetPackageVersion }}.nupkg -k ${{ secrets.NUGET_KEY }} -s ${{ env.NUGET_REPO_URL }} --skip-duplicate --no-symbols true
56+
run: dotnet nuget push ${GITHUB_WORKSPACE}/packages/Atc.Rest.Client.${{ env.NBGV_NuGetPackageVersion }}.nupkg -k ${{ secrets.NUGET_KEY }} -s ${{ env.NUGET_REPO_URL }} --skip-duplicate --no-symbols

0 commit comments

Comments
 (0)