We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a298e69 commit 8467958Copy full SHA for 8467958
.github/workflows/release.yml
@@ -25,9 +25,9 @@ jobs:
25
run: dotnet build ./Backtrace/Backtrace.csproj --no-restore --configuration Release
26
27
- name: Pack
28
- run: dotnet pack ./Backtrace/Backtrace.csproj --configuration Release --no-build -o ./output
+ run: dotnet pack ./Backtrace/Backtrace.csproj --configuration Release --no-build -o ./output/Backtrace.nupkg
29
30
- name: Publish to NuGet
31
env:
32
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
33
- run: dotnet nuget push ./output/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
+ run: dotnet nuget push ./output/Backtrace.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
0 commit comments