Skip to content

Commit f1d129b

Browse files
committed
Fix nuget push path
1 parent 9e9e591 commit f1d129b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/dotnet.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ jobs:
110110
env:
111111
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY }}
112112

113-
- run: dotnet nuget push nugets/*.nupkg --skip-duplicate
113+
- name: nuget push
114+
run: dotnet nuget push "*.nupkg" --skip-duplicate --api-key ${{ secrets.GITHUB_TOKEN }}
114115

115116
release-artifacts:
116117
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)