directors-assistant/Jenkinsfile
Adam R Grey ba68fb79c1
Some checks failed
gitea/directors-assistant/pipeline/head There was a failure building this commit
update jenkinsfile
2023-12-03 22:09:29 -05:00

23 lines
638 B
Groovy

pipeline {
agent any
stages {
stage('clean old'){
steps{
sh 'rm -rf bin obj'
cleanWs()
}
}
stage('linux') {
steps {
sh 'dotnet publish --configuration Release --os linux'
archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*.*'
}
}
stage('windows') {
steps {
sh 'dotnet publish --configuration Release --os windows'
archiveArtifacts artifacts: 'bin/Release/net7.0/windows-x64/publish/*.*'
}
}
}
}