ci: fix publish steps by adding builder folder

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-03-14 18:40:22 +01:00
parent f418298b7b
commit c074087f92
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 11 additions and 7 deletions

4
Jenkinsfile vendored
View File

@ -55,15 +55,18 @@ pipeline {
stage('Publish Prod') {
when { expression { env.GIT_BRANCH ==~ /.*master/ } }
steps {
dir('builder') {
sshagent(credentials: ['status-im-auto-ssh']) {
sh "ghp-import -p public"
}
}
}
}
stage('Publish Devel') {
when { expression { env.GIT_BRANCH ==~ /.*develop/ } }
steps {
dir('builder') {
sshagent(credentials: ['jenkins-ssh']) {
sh """
rsync -e 'ssh -o ${SCP_OPTS}' -r --delete public/. \
@ -73,6 +76,7 @@ pipeline {
}
}
}
}
post {
cleanup { cleanWs() }