C
C#•4w ago
James

pushing to nuget says it already exists but it doesnt

name: CD Pipeline

on:
push:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x

- name: Restore dependencies
run: dotnet restore

- name: Build project
run: dotnet build -c Release --no-restore

- name: Pack NuGet package
run: dotnet pack -c Release --no-build --output nupkgs

- name: Publish package to NuGet
run: dotnet nuget push ./nupkgs/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
name: CD Pipeline

on:
push:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x

- name: Restore dependencies
run: dotnet restore

- name: Build project
run: dotnet build -c Release --no-restore

- name: Pack NuGet package
run: dotnet pack -c Release --no-build --output nupkgs

- name: Publish package to NuGet
run: dotnet nuget push ./nupkgs/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
I have this yml github action that pushed the nuget package, but when it runs it fails because
error: Response status code does not indicate success: 409 (A package with ID 'AsyncEnumerableSource' and version '1.0.1' already exists and cannot be modified.).
Error: Process completed with exit code 1.
error: Response status code does not indicate success: 409 (A package with ID 'AsyncEnumerableSource' and version '1.0.1' already exists and cannot be modified.).
Error: Process completed with exit code 1.
But I can see in the actions tab it only ran once, and when I go on nuget it did in fact work
No description
No description
No description
No description
8 Replies
James
JamesOP•4w ago
Theres the --skip-duplicate parameter, but I dont want to use it since it should not be duplicate?
canton7
canton7•4w ago
AsyncEnumerableSource 1.0.1
A high-performance, thread-safe async enumerable source.
James
JamesOP•4w ago
Yeah but only because it was successful
canton7
canton7•4w ago
Ah sorry, I misread the question
James
JamesOP•4w ago
You can see it was created 25 mins ago and the CD pipeline ran 26 mins ago so it worked but it says it didnt 😦
lycian
lycian•4w ago
Are you possibly double publishing in CI somehow? I don't think so from the yml but I'd check the logs and see if there was a successful publish and then a failed one
James
JamesOP•4w ago
The CI pipeline does not pack or push the nuget package, and I cannot see any duplicates in the CD pipeline or the logs of its run 🤔
2025-03-06T17:04:56.6824674Z ##[group]Run dotnet pack -c Release --no-build --output nupkgs
2025-03-06T17:04:56.6825150Z dotnet pack -c Release --no-build --output nupkgs
2025-03-06T17:04:56.6870925Z shell: /usr/bin/bash -e {0}
2025-03-06T17:04:56.6871161Z env:
2025-03-06T17:04:56.6871348Z DOTNET_ROOT: /usr/share/dotnet
2025-03-06T17:04:56.6871588Z ##[endgroup]
2025-03-06T17:04:58.0283286Z Successfully created package '/home/runner/work/AsyncEnumerableSource/AsyncEnumerableSource/nupkgs/AsyncEnumerableSource.1.0.1.nupkg'.
2025-03-06T17:04:58.0363342Z Successfully created package '/home/runner/work/AsyncEnumerableSource/AsyncEnumerableSource/nupkgs/AsyncEnumerableSource.1.0.1.symbols.nupkg'.
2025-03-06T17:04:58.1093258Z ##[group]Run dotnet nuget push ./nupkgs/*.nupkg -k *** -s https://api.nuget.org/v3/index.json
2025-03-06T17:04:58.1094185Z dotnet nuget push ./nupkgs/*.nupkg -k *** -s https://api.nuget.org/v3/index.json
2025-03-06T17:04:58.1140409Z shell: /usr/bin/bash -e {0}
2025-03-06T17:04:58.1140666Z env:
2025-03-06T17:04:58.1140850Z DOTNET_ROOT: /usr/share/dotnet
2025-03-06T17:04:58.1141095Z ##[endgroup]
2025-03-06T17:04:58.4670519Z Pushing AsyncEnumerableSource.1.0.1.nupkg to 'https://www.nuget.org/api/v2/package'...
2025-03-06T17:04:58.4795515Z PUT https://www.nuget.org/api/v2/package/
2025-03-06T17:04:59.4452287Z Created https://www.nuget.org/api/v2/package/ 963ms
2025-03-06T17:04:59.4476379Z Your package was pushed.
2025-03-06T17:04:59.4498303Z Pushing AsyncEnumerableSource.1.0.1.symbols.nupkg to 'https://www.nuget.org/api/v2/package'...
2025-03-06T17:04:59.4499612Z PUT https://www.nuget.org/api/v2/package/
2025-03-06T17:04:59.7494073Z Conflict https://www.nuget.org/api/v2/package/ 299ms
2025-03-06T17:04:59.7494931Z To skip already published packages, use the option --skip-duplicate
2025-03-06T17:04:59.7524829Z error: Response status code does not indicate success: 409 (A package with ID 'AsyncEnumerableSource' and version '1.0.1' already exists and cannot be modified.).
2025-03-06T17:04:59.7856444Z ##[error]Process completed with exit code 1.
2025-03-06T17:04:56.6824674Z ##[group]Run dotnet pack -c Release --no-build --output nupkgs
2025-03-06T17:04:56.6825150Z dotnet pack -c Release --no-build --output nupkgs
2025-03-06T17:04:56.6870925Z shell: /usr/bin/bash -e {0}
2025-03-06T17:04:56.6871161Z env:
2025-03-06T17:04:56.6871348Z DOTNET_ROOT: /usr/share/dotnet
2025-03-06T17:04:56.6871588Z ##[endgroup]
2025-03-06T17:04:58.0283286Z Successfully created package '/home/runner/work/AsyncEnumerableSource/AsyncEnumerableSource/nupkgs/AsyncEnumerableSource.1.0.1.nupkg'.
2025-03-06T17:04:58.0363342Z Successfully created package '/home/runner/work/AsyncEnumerableSource/AsyncEnumerableSource/nupkgs/AsyncEnumerableSource.1.0.1.symbols.nupkg'.
2025-03-06T17:04:58.1093258Z ##[group]Run dotnet nuget push ./nupkgs/*.nupkg -k *** -s https://api.nuget.org/v3/index.json
2025-03-06T17:04:58.1094185Z dotnet nuget push ./nupkgs/*.nupkg -k *** -s https://api.nuget.org/v3/index.json
2025-03-06T17:04:58.1140409Z shell: /usr/bin/bash -e {0}
2025-03-06T17:04:58.1140666Z env:
2025-03-06T17:04:58.1140850Z DOTNET_ROOT: /usr/share/dotnet
2025-03-06T17:04:58.1141095Z ##[endgroup]
2025-03-06T17:04:58.4670519Z Pushing AsyncEnumerableSource.1.0.1.nupkg to 'https://www.nuget.org/api/v2/package'...
2025-03-06T17:04:58.4795515Z PUT https://www.nuget.org/api/v2/package/
2025-03-06T17:04:59.4452287Z Created https://www.nuget.org/api/v2/package/ 963ms
2025-03-06T17:04:59.4476379Z Your package was pushed.
2025-03-06T17:04:59.4498303Z Pushing AsyncEnumerableSource.1.0.1.symbols.nupkg to 'https://www.nuget.org/api/v2/package'...
2025-03-06T17:04:59.4499612Z PUT https://www.nuget.org/api/v2/package/
2025-03-06T17:04:59.7494073Z Conflict https://www.nuget.org/api/v2/package/ 299ms
2025-03-06T17:04:59.7494931Z To skip already published packages, use the option --skip-duplicate
2025-03-06T17:04:59.7524829Z error: Response status code does not indicate success: 409 (A package with ID 'AsyncEnumerableSource' and version '1.0.1' already exists and cannot be modified.).
2025-03-06T17:04:59.7856444Z ##[error]Process completed with exit code 1.
I downloaded the logs and I see it actually says success but it failed to push .symbols.nupkg Turns out these: <IncludeSymbols>true</IncludeSymbols> <IncludeSource>true</IncludeSource>
in csproj dont work as I expected

Did you find this page helpful?