directors-assistant/Jenkinsfile
Adam R Grey 805b0cc476
Some checks failed
gitea/directors-assistant/pipeline/head There was a failure building this commit
jenkinsfile update attempt again
2023-12-03 22:11:15 -05:00

23 lines
692 B
Groovy

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