17 lines
352 B
Plaintext
17 lines
352 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('Build') {
|
||
|
steps {
|
||
|
echo 'Building..'
|
||
|
sh 'dotnet pack --configuration Release --output ./'
|
||
|
}
|
||
|
}
|
||
|
stage('Deploy') {
|
||
|
steps {
|
||
|
sh 'dotnet nuget push ./*.nupkg --source gitea'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|