19 lines
416 B
Groovy
19 lines
416 B
Groovy
pipeline {
|
|
agent any
|
|
tools {
|
|
dotnetsdk 'dotnet6'
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Building..'
|
|
sh 'dotnet pack franz/franz.csproj --configuration Release --output ./'
|
|
}
|
|
}
|
|
stage('Deploy') {
|
|
steps {
|
|
sh 'dotnet nuget push ./*.nupkg --source gitea'
|
|
}
|
|
}
|
|
}
|
|
} |