why would you not
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit

This commit is contained in:
adam 2024-11-10 00:39:03 -05:00
parent a3e2d480dd
commit 79efdfcedf

6
Jenkinsfile vendored
View File

@ -2,6 +2,10 @@ pipeline {
agent any
stages {
stage('env'){
cleanWs()
checkout scm
}
stage('nuget pack'){
steps{
dotnetPack(outputDirectory: "./", project: "nugettest/")
@ -24,7 +28,7 @@ pipeline {
}
stage('publish package'){
steps{
dotnetNuGetPush(root: "./*.nupkg", source:"greyngitea")
dotnetNuGetPush(root: "./*.nupkg", source:"greyngitea", skipDuplicate:true)
}
}
}