Files
WorkFlow/src/WorkFlow.API/Jenkinsfile

11 lines
149 B
Groovy

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