vassago/Jenkinsfile
Adam R Grey c1e32ef39a
All checks were successful
gitea/vassago/pipeline/head This commit looks good
fix failure to adapt
2023-12-05 22:59:30 -05:00

17 lines
393 B
Groovy

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