jenkins-playground/Jenkinsfile
adam 5788582f36
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
take 2
2024-11-09 22:16:12 -05:00

13 lines
190 B
Groovy

pipeline {
agent any
stages {
stage('nuget'){
steps{
dotnetPack "Deployment -o ./"
dotnetPublish
}
}
}
}