We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7381950 commit 240d738Copy full SHA for 240d738
1 file changed
.github/workflows/release.yaml
@@ -20,10 +20,9 @@ jobs:
20
VERSION=${TAG_NAME:1}
21
echo Version is $VERSION
22
dotnet msbuild -t:restore,build,pack -p:Configuration=Release -p:Version=$VERSION -p:PackageVersion=$VERSION FINT.Model.Resource.sln
23
-
24
env:
25
TAG_NAME: ${{github.event.release.tag_name}}
26
27
- name: Publish new release to NuGet
28
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
+ 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