Skip to content

Commit

Permalink
Fix generation of CI build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed Dec 20, 2021
1 parent 534e467 commit 3027039
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import java.nio.file.Files

String buildNumber = System.getenv('BUILD_NUMBER')
String performanceTest = System.getenv('BUILD_PERFORMANCE_TEST')
if (buildNumber && performanceTest != null) {
if (buildNumber && performanceTest == null) {
File uploadFile = file("build/${buildNumber}.tar.bz2")
project.gradle.buildFinished { result ->
println "build complete, generating: $uploadFile"
Expand Down

0 comments on commit 3027039

Please sign in to comment.