Added Jenkinsfile
Some checks failed
EllieBotDevs/EllieHub/pipeline/head There was a failure building this commit

This commit is contained in:
Toastie 2025-01-07 16:34:21 +13:00
parent d997fa5952
commit d210f77ecb
Signed by: toastie_t0ast
GPG key ID: 0861BE54AD481DC7

15
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,15 @@
pipeline {
agent any
stages {
stage('Setup Dependencies') {
steps {
sh 'dotnet restore'
}
}
stage('Build') {
steps {
sh 'dotnet build -c Release'
}
}
}
}