From 16f59a793b24315ebe1352c1788e9c9a650addfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 14 Mar 2023 19:11:50 +0100 Subject: [PATCH] ci: fix repo used to publish to gh-pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f03cd00..e1da6cc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -55,7 +55,8 @@ pipeline { stage('Publish Prod') { when { expression { env.GIT_BRANCH ==~ /.*master/ } } steps { - dir('builder') { + dir('src') { + sh 'cp -r ../builder/out ./' sshagent(credentials: ['status-im-auto-ssh']) { sh "ghp-import -p out" }