From ba0690959ba222e26b031c900df29e200664ef4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Tue, 11 Aug 2020 09:38:10 +0200 Subject: [PATCH] chore(ci): use build step for checking if is PR (#20536) --- .ci/packaging.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/packaging.groovy b/.ci/packaging.groovy index 77d8c05561f0..7d1f9d6027a9 100644 --- a/.ci/packaging.groovy +++ b/.ci/packaging.groovy @@ -190,7 +190,7 @@ def tagAndPush(name){ } def tagName = "${libbetaVer}" - if (env.CHANGE_ID?.trim()) { + if (isPR()) { tagName = "pr-${env.CHANGE_ID}" }