jenkins-playground/Jenkinsfile
adam 44fc056354
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
theory: it's not running in the workspace directory. For some reason.
2024-11-09 22:31:04 -05:00

14 lines
266 B
Groovy

pipeline {
agent any
stages {
stage('nuget'){
steps{
sh "ls"
dotnetPack(outputDirectory: "./", project: "Deployment/Deployment.csproj")
dotnetNugetPublish()
}
}
}
}