Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
Add Jenkins pipeline for ASP.NET publish #6
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonZiminSaritasa committed Aug 28, 2018
1 parent 916adf1 commit 7703d23
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
pipeline {
agent any

environment {
SecretConfigPath = credentials("${env.SecretConfig}")
}

stages {
stage ('SCM') {
steps {
script {
checkout scm

bat script: 'psake clean'
}
}
}

stage ('Publish Web') {
steps {
script {
bat script: "psake publish-web"
}
}
}
}
}

0 comments on commit 7703d23

Please sign in to comment.