You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2022/11/28 17:47:56 UTC

[sling-ide-tooling] branch master updated: fix condition for deployment

This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git


The following commit(s) were added to refs/heads/master by this push:
     new a5522088 fix condition for deployment
a5522088 is described below

commit a5522088cdd9624fbaa3675a9979bb45d9869ff3
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Mon Nov 28 18:47:49 2022 +0100

    fix condition for deployment
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index c70e6a58..41e1dc81 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -148,5 +148,5 @@ def runCmd(def cmd) {
 }
 
 boolean shouldDeploy() {
-	return env.CHANGE_BRANCH == 'master'
+	return env.BRANCH_NAME == 'master'
 }