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