forked from GeorgDangl/Fallout.GitHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
28 lines (28 loc) · 750 Bytes
/
Copy pathJenkinsfile
File metadata and controls
28 lines (28 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
pipeline {
agent {
node {
label 'master'
customWorkspace 'workspace/Nuke.GitHub'
}
}
environment {
KeyVaultBaseUrl = credentials('AzureCiKeyVaultBaseUrl')
KeyVaultClientId = credentials('AzureCiKeyVaultClientId')
KeyVaultClientSecret = credentials('AzureCiKeyVaultClientSecret')
}
stages {
stage ('Deploy') {
steps {
powershell './build.ps1 UploadDocumentation+PublishGitHubRelease'
}
}
}
post {
always {
step([$class: 'Mailer',
notifyEveryUnstableBuild: true,
recipients: "georg@dangl.me",
sendToIndividuals: true])
}
}
}