jenkins-playground/Jenkinsfile
adam 628d84cfa7
All checks were successful
gitea.arg.rip/jenkins-playground/pipeline/head This commit looks good
take2
2024-11-10 00:40:09 -05:00

38 lines
934 B
Groovy

pipeline {
agent any
stages {
stage('env'){
steps{
cleanWs()
checkout scm
}
}
stage('nuget pack'){
steps{
dotnetPack(outputDirectory: "./", project: "nugettest/")
}
}
stage('build numberify'){
steps{
sh """
filename=\$(ls ./*.nupkg | head -1)
fullfilename=\$(basename -- \$filename)
noext=\${fullfilename%.*}
mv "\$filename" \$noext-\$BUILD_NUMBER.nupkg
filename=null
fullfilename=null
noext=null
"""
}
}
stage('publish package'){
steps{
dotnetNuGetPush(root: "./*.nupkg", source:"greyngitea", skipDuplicate:true)
}
}
}
}