EllieHub/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'
}
}
}
}