1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-02 13:23:37 +02:00
MLEM/Jenkinsfile
2020-02-21 13:51:39 +01:00

31 lines
580 B
Groovy

pipeline {
agent any
stages {
stage('Build Projects') {
steps {
sh '''for i in **/MLEM*.csproj; do
dotnet build $i
done'''
sh 'dotnet build **/Demos.csproj'
}
}
stage('Pack') {
steps {
sh 'find . -type f -name \'*.nupkg\' -delete'
sh '''for i in **/MLEM*.csproj; do
dotnet pack $i --version-suffix ${BUILD_NUMBER}
done'''
}
}
stage('Publish') {
steps {
sh '''for i in **/*.nupkg; do
nuget push $i -Source https://nuget.ellpeck.de/v3/index.json
done'''
}
}
}
}