diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..dd443e2 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,23 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + dotnetBuild(configuration: 'Release') + } + } + + stage('Test') { + steps { + dotnetTest(configuration: 'Release') + } + } + + stage('Push Package') { + steps { + dotnetNuGetPush(apiKeyId: '3yAJPMxcaEhb_HP62dxK', source: 'http://nuget.l--n.de/nuget/l--n/v3/index.json') + } + } + + } +} \ No newline at end of file