From 2184c50a07abeaeff3d5d45a809981c22d56f29d Mon Sep 17 00:00:00 2001 From: Husnu Setiawan Date: Mon, 23 Feb 2026 02:31:14 +0700 Subject: [PATCH] fix bug file Jenkinsfile (2) --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0c714d8..42691ad 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { steps { sshagent(credentials: ['dev-id_rsa']) { sh "php8.2 /usr/local/bin/composer install" - sh "./vendor/bin/envoy run deploy-dev --branch=development" + sh "php8.2 ./vendor/bin/envoy run deploy-dev --branch=development" } } } @@ -21,7 +21,7 @@ pipeline { steps { sshagent(credentials: ['dev-id_rsa']) { sh "php8.2 /usr/local/bin/composer install" - sh "./vendor/bin/envoy run deploy-dev --branch=stage" + sh "php8.2 ./vendor/bin/envoy run deploy-dev --branch=stage" } } } @@ -33,7 +33,7 @@ pipeline { steps { sshagent(credentials: ['dev-id_rsa']) { sh "php8.2 /usr/local/bin/composer install" - sh "./vendor/bin/envoy run deploy --branch=production" + sh "php8.2 ./vendor/bin/envoy run deploy --branch=production" } } } @@ -45,7 +45,7 @@ pipeline { steps { sshagent(credentials: ['dev-id_rsa']) { sh "php8.2 /usr/local/bin/composer install" - sh "./vendor/bin/envoy run deploy --branch=production-mirror --folder=pos-api-mirror" + sh "php8.2 ./vendor/bin/envoy run deploy --branch=production-mirror --folder=pos-api-mirror" } } }