Skip to content

Commit

Permalink
#156. Switch publishing to Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Joński committed Jan 2, 2017
1 parent b016b8c commit a1cbf50
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ pipeline {
echo "${params.release}"
echo "`${params.release} == true`"
echo "`${params.release} == 'true'`"
sh "test ${params.release} = 'true'"
}
}

Expand All @@ -23,7 +22,7 @@ pipeline {
// }
stage("Publish release") {
when {
"${params.release}" == true
$params.release == true
}
steps {
sh "./gradlew javadoc >/dev/null"
Expand Down

0 comments on commit a1cbf50

Please sign in to comment.