Toastie
d210f77ecb
Some checks failed
EllieBotDevs/EllieHub/pipeline/head There was a failure building this commit
15 lines
No EOL
215 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
} |