diff --git a/WorkFlow.API/Jenkinsfile b/WorkFlow.API/Jenkinsfile new file mode 100644 index 0000000..3546ad6 --- /dev/null +++ b/WorkFlow.API/Jenkinsfile @@ -0,0 +1,10 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + sh 'dotnet build' + } + } + } +}