Deploy the server on prod

This commit is contained in:
Marks Polakovs 2020-03-31 20:43:38 +02:00
parent 7668a7d781
commit 709c6b6e82

11
Jenkinsfile vendored
View file

@ -25,6 +25,8 @@ pipeline {
when { when {
branch 'production' branch 'production'
} }
parallel {
stage('Deploy prod client') {
environment { environment {
REACT_APP_MYRADIO_NONAPI_BASE = 'https://ury.org.uk/myradio' REACT_APP_MYRADIO_NONAPI_BASE = 'https://ury.org.uk/myradio'
REACT_APP_MYRADIO_BASE = 'https://ury.org.uk/api/v2' REACT_APP_MYRADIO_BASE = 'https://ury.org.uk/api/v2'
@ -37,5 +39,14 @@ pipeline {
} }
} }
} }
stage('Deploy server') {
steps {
sshagent(credentials: ['ury']) {
sh 'scp -v server.py liquidsoap@urysteve.ury:/opt/webstudioserver/server.py'
}
}
}
}
}
} }
} }