From 8f2cca8c798f5980b368cf09e34c51a09175e53c Mon Sep 17 00:00:00 2001 From: Adam Outler Date: Tue, 1 Apr 2025 22:09:35 +0000 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f61ae0f..bd0f93a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,9 +11,11 @@ pipeline { } stage('Deploy') { steps { - sh """ - COMPOSE_PROJECT_NAME=${PROJECT_NAME} docker compose up -d --force-recreate - """ + withCredentials([string(credentialsId: 'google-email-apps-password', variable: 'GOOGLE_APP_PASSWORD')]) { + sh """ + COMPOSE_PROJECT_NAME=${PROJECT_NAME} docker compose up -d --force-recreate + """ + } } } }