From 5c0d5217ad96aa5ca29eccd0c5bc219d792d71b8 Mon Sep 17 00:00:00 2001 From: koo995 <107671886+koo995@users.noreply.github.com> Date: Mon, 23 Sep 2024 01:25:18 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=A0=A0=ED=82=A8=EC=8A=A4=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=B4=ED=94=84=EB=9D=BC=EC=9D=B8=20=EC=8B=A4=ED=96=89?= =?UTF-8?q?=EA=B6=8C=ED=95=9C=EA=B3=BC=20=EB=AC=B8=EB=B2=95=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e972003..fb1a924 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,9 @@ pipeline { agent any environment { - API_ACCESS_KEY = credentials('ncp-api-access-key') - API_SECRET_KEY = credentials('ncp-api-secret-key') - } + API_ACCESS_KEY = credentials('ncp-api-access-key') + API_SECRET_KEY = credentials('ncp-api-secret-key') + } stages { stage('Prepare') { @@ -39,6 +39,7 @@ pipeline { stage('Upload') { steps { + sh 'chmod +x ./script/upload.sh' sh './script/upload.sh' } @@ -50,9 +51,11 @@ pipeline { echo 'Upload failed!' } } + } stage('Deploy') { steps { + sh 'chmod +x ./script/deploy.sh' sh './script/deploy.sh' }