[bk/flaky] fix env var for reusing artifacts (#127503)

This commit is contained in:
Spencer 2022-03-10 12:39:32 -08:00 committed by GitHub
parent 61a84edc62
commit 62f8e58f11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -116,7 +116,7 @@ steps.push({
label: 'Build Kibana Distribution and Plugins',
agents: { queue: 'c2-8' },
key: 'build',
if: "build.env('BUILD_ID_FOR_ARTIFACTS') == null || build.env('BUILD_ID_FOR_ARTIFACTS') == ''",
if: "build.env('KIBANA_BUILD_ID') == null || build.env('KIBANA_BUILD_ID') == ''",
});
for (const testSuite of testSuites) {