EllieHub/Jenkinsfile
Toastie d210f77ecb
Some checks failed
EllieBotDevs/EllieHub/pipeline/head There was a failure building this commit
Added Jenkinsfile
2025-01-07 16:34:21 +13:00

15 lines
No EOL
215 B
Groovy

pipeline {
agent any
stages {
stage('Setup Dependencies') {
steps {
sh 'dotnet restore'
}
}
stage('Build') {
steps {
sh 'dotnet build -c Release'
}
}
}
}