diff --git a/Jenkinsfile b/Jenkinsfile index 9fff4f8..79058e1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,10 +23,12 @@ pipeline { agent { docker { image 'mcr.microsoft.com/dotnet/sdk:5.0' } } - stages ('Build') { - steps { - dir('SessionCompanion/SessionCompanion') { - sh 'dotnet build' + stages { + stage('Build') { + steps { + dir('SessionCompanion/SessionCompanion') { + sh 'dotnet build' + } } } }