We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92df4af commit cba3359Copy full SHA for cba3359
Jenkinsfile
@@ -5,6 +5,7 @@ pipeline {
5
agent { label 'linux' }
6
7
options {
8
+ disableRestartFromStage()
9
disableConcurrentBuilds()
10
/* manage how many builds we keep */
11
buildDiscarder(logRotator(
@@ -61,4 +62,4 @@ pipeline {
61
62
63
def isMasterBranch() { GIT_BRANCH ==~ /.*master/ }
64
def deployBranch() { isMasterBranch() ? 'deploy-master' : 'deploy-develop' }
-def deployDomain() { isMasterBranch() ? 'docs.status.network' : 'dev-docs.status.network' }
65
+def deployDomain() { isMasterBranch() ? 'docs.status.network' : 'dev-docs.status.network' }
0 commit comments