jenkins-playground/Jenkinsfile
adam 7cbda65ccd
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
oh right
2024-11-09 22:34:47 -05:00

12 lines
148 B
Groovy

pipeline {
agent any
stages {
stage('nuget'){
steps{
dotnetNuGetPush()
}
}
}
}