directors-assistant/Jenkinsfile

25 lines
662 B
Groovy

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