WorkFlow/WorkFlow.API/Jenkinsfile
Developer 02 3832351dd1
Some checks failed
AppStd/WorkFlow/pipeline/head There was a failure building this commit
add Jenkinsfile
2025-05-22 16:03:12 +02:00

11 lines
149 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'dotnet build'
}
}
}
}