jenkins-playground/Jenkinsfile
adam 072d5f9e04
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
dotnet pack?
2024-11-09 22:13:10 -05:00

10 lines
126 B
Groovy

pipeline {
agent any
stages {
stage('pack'){
sh "dotnet pack Deployment -o ./"
}
}
}