From c60811852d36f9a3728915771f4ea4efce0802d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 21 Feb 2022 10:52:48 +0100 Subject: [PATCH] ci: fix publish step conditional branch check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/status-im/js-waku/issues/556 Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.gh-pages | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile.gh-pages b/ci/Jenkinsfile.gh-pages index 8b29da7ee6..e347769791 100644 --- a/ci/Jenkinsfile.gh-pages +++ b/ci/Jenkinsfile.gh-pages @@ -39,7 +39,7 @@ pipeline { } stage('Publish') { - when { expression { GIT_BRANCH.endsWith('build-examples') } } + when { expression { GIT_BRANCH.endsWith('master') } } steps { script { sshagent(credentials: ['status-im-auto-ssh']) { sh 'npm run deploy'