Skip to content

Commit 240d738

Browse files
committed
Fix for dotnet push
1 parent 7381950 commit 240d738

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/release.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ jobs:
2020
VERSION=${TAG_NAME:1}
2121
echo Version is $VERSION
2222
dotnet msbuild -t:restore,build,pack -p:Configuration=Release -p:Version=$VERSION -p:PackageVersion=$VERSION FINT.Model.Resource.sln
23-
2423
env:
2524
TAG_NAME: ${{github.event.release.tag_name}}
2625

2726
- name: Publish new release to NuGet
2827
run: |
29-
dotnet nuget push FINT.Model.Resource/bin/Release/FINT.Model.Resource.*.nupkg -k ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json
28+
dotnet nuget push FINT.Model.Resource/bin/Release/FINT.Model.Resource.*.nupkg --api-key ${{secrets.NUGET_KEY}} --source "https://api.nuget.org/v3/index.json"

0 commit comments

Comments
 (0)