EllieHub/Jenkinsfile

15 lines
215 B
Text
Raw Normal View History

2025-01-07 03:34:21 +00:00
pipeline {
agent any
stages {
stage('Setup Dependencies') {
steps {
sh 'dotnet restore'
}
}
stage('Build') {
steps {
sh 'dotnet build -c Release'
}
}
}
}