franz/Jenkinsfile
2022-11-30 16:11:49 -05:00

19 lines
387 B
Groovy

pipeline {
agent any
tools {
dotnetsdk
}
stages {
stage('Build') {
steps {
echo 'Building..'
sh 'dotnet pack --configuration Release --output ./'
}
}
stage('Deploy') {
steps {
sh 'dotnet nuget push ./*.nupkg --source gitea'
}
}
}
}