Skip to content

Commit 8467958

Browse files
committed
Define full path to the nuget package
1 parent a298e69 commit 8467958

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
run: dotnet build ./Backtrace/Backtrace.csproj --no-restore --configuration Release
2626

2727
- name: Pack
28-
run: dotnet pack ./Backtrace/Backtrace.csproj --configuration Release --no-build -o ./output
28+
run: dotnet pack ./Backtrace/Backtrace.csproj --configuration Release --no-build -o ./output/Backtrace.nupkg
2929

3030
- name: Publish to NuGet
3131
env:
3232
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
33+
run: dotnet nuget push ./output/Backtrace.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json

0 commit comments

Comments
 (0)