jenkins-playground/Jenkinsfile

13 lines
218 B
Groovy

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