jenkins-playground/Jenkinsfile
adam e38693e5de
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
no you're just not in the repo you think you're in, dumbass
2024-11-09 22:33:42 -05:00

12 lines
151 B
Groovy

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