From d12bab5502b8d79552e2389d83497df6a4464981 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 77d8c05561f..7d1f9d6027a 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}" }