adam
d45855eee4
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
13 lines
224 B
Groovy
13 lines
224 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('nuget'){
|
|
steps{
|
|
dotnetPack(outputDirectory: "./", project: "Deployment")
|
|
dotnetNugetPublish()
|
|
}
|
|
}
|
|
}
|
|
}
|