From 0bb4cc7ad4528a1b4cc11ecf2df6d5136a22011d Mon Sep 17 00:00:00 2001 From: core Date: Sat, 29 Apr 2023 10:04:38 -0400 Subject: [PATCH] fix deployments --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5611a6f68b57455909bbaf8a4d10108db6b3091c..8821d5e51a5badd3498a0f24ffd5808b8a81e67a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,8 +26,8 @@ pipeline { } stage('Deploy') { steps { - sh 'sshpass -p ${INFRA_KEY} ./spacetime infra update-bleeding' - sh 'sshpass -p ${INFRA_KEY} ./spacetime infra restart-bleeding' + sh 'sshpass -p ${INFRA_KEY} ./ansible/infra update-bleeding' + sh 'sshpass -p ${INFRA_KEY} ./ansible/infra restart-bleeding' } } }