vassago/Jenkinsfile
Adam R Grey 5fb96ea67e
Some checks failed
gitea/vassago/pipeline/head There was a failure building this commit
jenkins looking for Jenkinsfile
2023-12-05 22:57:38 -05:00

17 lines
405 B
Groovy

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