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