ci: fix repo used to publish to gh-pages

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

3
Jenkinsfile vendored
View File

@ -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"
}