forked from adam/discord-bot-shtik
Adam R Grey
c1e32ef39a
All checks were successful
gitea/vassago/pipeline/head This commit looks good
17 lines
393 B
Groovy
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/*'
|
|
}
|
|
}
|
|
}
|
|
} |