directors-assistant/Jenkinsfile
Adam R Grey f1adf6b500
Some checks failed
gitea/directors-assistant/pipeline/head There was a failure building this commit
i forget what cleanWS is supposed to do tbh
2023-12-03 22:13:38 -05:00

22 lines
666 B
Groovy

pipeline {
agent any
stages {
stage('clean old'){
steps{
sh 'rm -rf bin obj'
}
}
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/*.*'
}
}
}
}