forked from adam/discord-bot-shtik
Adam R Grey
5fb96ea67e
Some checks failed
gitea/vassago/pipeline/head There was a failure building this commit
17 lines
405 B
Groovy
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/*'
|
|
}
|
|
}
|
|
}
|
|
} |