jenkins-playground/Jenkinsfile
adam d45855eee4
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
fkn idk
2024-11-09 22:25:49 -05:00

13 lines
224 B
Groovy

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