1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-01 04:43:37 +02:00
MLEM/Jenkinsfile
2020-05-21 22:50:38 +02:00

23 lines
454 B
Groovy

pipeline {
agent any
stages {
stage('Cake Build') {
steps {
sh './build.sh -Target Push -Branch ' + env.BRANCH_NAME
}
}
stage('Document') {
when {
branch 'release'
}
steps {
sh './build.sh -Target Document'
}
}
}
environment {
BAGET = credentials('3db850d0-e6b5-43d5-b607-d180f4eab676')
NUGET = credentials('e1bf7f6c-6047-4f7e-b639-15240a8f8351')
}
}