jenkins-playground/Jenkinsfile

14 lines
266 B
Plaintext
Raw Normal View History

2024-10-25 21:09:17 -04:00
pipeline {
2024-11-09 22:13:10 -05:00
agent any
2024-10-25 21:09:17 -04:00
stages {
2024-11-09 22:16:12 -05:00
stage('nuget'){
steps{
sh "ls"
dotnetPack(outputDirectory: "./", project: "Deployment/Deployment.csproj")
2024-11-09 22:25:49 -05:00
dotnetNugetPublish()
2024-11-09 22:16:12 -05:00
}
2024-10-25 21:09:17 -04:00
}
}
2024-10-30 23:34:45 -04:00
}