From 41c8521936c138e8be296fdc962cd28bcbc0da9d Mon Sep 17 00:00:00 2001 From: Harry Bayliss Date: Thu, 22 May 2025 17:37:09 +0100 Subject: [PATCH] secrets fix --- app/Jobs/Services/DeployService.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/Jobs/Services/DeployService.php b/app/Jobs/Services/DeployService.php index 8636d2f..c27a8a0 100644 --- a/app/Jobs/Services/DeployService.php +++ b/app/Jobs/Services/DeployService.php @@ -36,9 +36,7 @@ class DeployService implements ShouldQueue 'order' => $index + 1, 'status' => DeploymentStatus::PENDING, 'script' => $plannedStep->getSafeScript(), - 'secrets' => [ - 'password' => $this->service->credentials['password'], - ], + 'secrets' => $this->service->credentials, ]); if ($index === 0) { $step->dispatchJob();