ci; fix output folder from public to out

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

4
Jenkinsfile vendored
View File

@ -57,7 +57,7 @@ pipeline {
steps { steps {
dir('builder') { dir('builder') {
sshagent(credentials: ['status-im-auto-ssh']) { sshagent(credentials: ['status-im-auto-ssh']) {
sh "ghp-import -p public" sh "ghp-import -p out"
} }
} }
} }
@ -69,7 +69,7 @@ pipeline {
dir('builder') { dir('builder') {
sshagent(credentials: ['jenkins-ssh']) { sshagent(credentials: ['jenkins-ssh']) {
sh """ sh """
rsync -e 'ssh -o ${SCP_OPTS}' -r --delete public/. \ rsync -e 'ssh -o ${SCP_OPTS}' -r --delete out/. \
${env.DEV_HOST}:/var/www/${env.DEV_SITE}/ ${env.DEV_HOST}:/var/www/${env.DEV_SITE}/
""" """
} }