Skip to content

Commit 2d58253

Browse files
committed
Fix nuget publish path
1 parent c388e51 commit 2d58253

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,5 @@ jobs:
4242
run: dotnet pack -m:1 -p:version=${GITHUB_REF#refs/*/v}
4343

4444
- name: 🚀 nuget
45-
run: dotnet nuget push ./bin/**/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
45+
working-directory: bin
46+
run: dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate

0 commit comments

Comments
 (0)