2024-10-25 21:09:17 -04:00
|
|
|
pipeline {
|
2024-11-09 22:13:10 -05:00
|
|
|
agent any
|
2024-10-25 21:09:17 -04:00
|
|
|
|
|
|
|
stages {
|
2024-11-09 23:53:34 -05:00
|
|
|
stage('nuget pack'){
|
2024-11-09 22:16:12 -05:00
|
|
|
steps{
|
2024-11-09 22:54:36 -05:00
|
|
|
dotnetPack(outputDirectory: "./", project: "nugettest/")
|
2024-11-09 23:53:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('build numberify'){
|
|
|
|
steps{
|
2024-11-09 23:46:10 -05:00
|
|
|
sh """
|
|
|
|
filename=\$(ls ./*.nupkg | head -1)
|
|
|
|
fullfilename=\$(basename -- \$filename)
|
2024-11-09 23:30:43 -05:00
|
|
|
noext=\${fullfilename%.*}
|
2024-11-09 23:27:42 -05:00
|
|
|
|
2024-11-09 23:53:34 -05:00
|
|
|
mv "\$filename" \$noext-\$BUILD_NUMBER.nupkg
|
2024-11-09 23:27:42 -05:00
|
|
|
|
2024-11-09 23:53:34 -05:00
|
|
|
filename=null
|
2024-11-09 23:27:42 -05:00
|
|
|
fullfilename=null
|
|
|
|
noext=null
|
|
|
|
"""
|
2024-11-09 23:53:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('publish package'){
|
|
|
|
steps{
|
2024-11-09 23:48:25 -05:00
|
|
|
dotnetNuGetPush(root: "./*.nupkg")
|
2024-11-09 22:16:12 -05:00
|
|
|
}
|
2024-10-25 21:09:17 -04:00
|
|
|
}
|
|
|
|
}
|
2024-10-30 23:34:45 -04:00
|
|
|
}
|