franz/Jenkinsfile
Adam R Grey 310f1a883c
Some checks failed
gitea/franz/pipeline/head There was a failure building this commit
maybe i did mean null?
2023-03-29 22:13:04 -04:00

30 lines
754 B
Groovy

pipeline {
agent any
tools {
dotnetsdk
}
stages {
stage('build franz') {
steps {
echo 'building franz'
sh 'dotnet pack franz/franz.csproj --configuration Release --output ./'
}
}
stage('deploy franz') {
steps {
sh 'dotnet nuget push ./*.nupkg --source gitea --skip-duplicate'
}
}
stage('build lister') {
steps {
echo 'franz'
sh 'dotnet publish topiclister/topiclister.csproj --configuration Release --output ./topiclister'
}
}
}
post {
always {
echo 'I will always say Hello again!'
}
}
}