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 838bb7b commit 59334b8Copy full SHA for 59334b8
Jenkinsfile
@@ -9,7 +9,6 @@ pipeline {
9
parameters {
10
string(defaultValue: '', name: 'major_version', description: "Major version of the docs to be built")
11
string(defaultValue: '', name: 'minor_version', description: "Minor version of the docs to be built")
12
- booleanParam(defaultValue: false, name: 'patch', description: "Is it a patch ?")
13
}
14
environment {
15
GITHUB_TOKEN = credentials('6e7c1e8f-ca2c-4b11-a70e-d934d3f6b681')
@@ -51,11 +50,7 @@ pipeline {
51
50
52
stage("Link docs to latest") {
53
steps{
54
- script{
55
- if(params.patch) {
56
- sh "add_links.sh"
57
- }
58
+ sh "add_links.sh"
59
60
61
stage("Push PR for docs") {
0 commit comments