jenkins-playground/Jenkinsfile
adam f8d875a0a0
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
now we're getting somewhere
2024-11-09 22:28:01 -05:00

13 lines
225 B
Groovy

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