jenkins-playground/Jenkinsfile
adam f5402f6635
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
nuget pack and push
2024-11-09 22:54:36 -05:00

13 lines
221 B
Groovy

pipeline {
agent any
stages {
stage('nuget'){
steps{
dotnetPack(outputDirectory: "./", project: "nugettest/")
dotnetNuGetPush()
}
}
}
}