We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d24db34 commit 9f8bb9bCopy full SHA for 9f8bb9b
1 file changed
Jenkinsfile
@@ -25,15 +25,15 @@ pipeline {
25
}
26
27
environment {
28
- BINTRAY = credentials('fint-bintray')
+ NUGET_KEY = credentials('fint-nuget')
29
30
when {
31
branch 'master'
32
33
steps {
34
unstash 'libs'
35
archiveArtifacts '**/*.nupkg'
36
- sh "dotnet nuget push FINT.Model.Resource/bin/Release/FINT.Model.Resource.*.nupkg -k ${BINTRAY} -s https://api.bintray.com/nuget/fint/nuget"
+ sh "dotnet nuget push FINT.Model.Resource/bin/Release/FINT.Model.Resource.*.nupkg -k ${NUGET_KEY} -s https://api.nuget.org/v3/index.json"
37
38
39
0 commit comments