jenkins-playground/Jenkinsfile
2024-11-09 22:34:47 -05:00

12 lines
148 B
Groovy

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