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