jenkins-playground/Jenkinsfile
adam d8fe32bae8
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
oh that's what a named parameter is
2024-11-09 22:20:34 -05:00

13 lines
218 B
Groovy

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