this, actually.
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit

i guess if I had a very very large repo, I wouldn't want this as a given.
This commit is contained in:
adam 2024-11-10 00:48:51 -05:00
parent 234958a867
commit 18f8bf82d5

10
Jenkinsfile vendored
View File

@ -2,12 +2,6 @@ pipeline {
agent any
stages {
stage('env'){
steps{
cleanWs()
checkout scm
}
}
stage('nuget pack'){
steps{
dotnetPack(outputDirectory: "./", project: "nugettest/")
@ -33,5 +27,9 @@ pipeline {
dotnetNuGetPush(root: "./*.nupkg", source:"greyngitea", skipDuplicate:true)
}
}
post {
always {
cleanWs() }
}
}
}