From 84074c80f003813d4b1c0f185e162f66f57a33f9 Mon Sep 17 00:00:00 2001 From: "Harry (hjbdev)" Date: Mon, 31 Mar 2025 16:30:23 +0000 Subject: [PATCH] change path on runstep --- app/Jobs/Services/RunStep.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/Services/RunStep.php b/app/Jobs/Services/RunStep.php index 709039d..abfb415 100644 --- a/app/Jobs/Services/RunStep.php +++ b/app/Jobs/Services/RunStep.php @@ -30,7 +30,7 @@ class RunStep implements ShouldQueue $server = $this->step->deployment->target->server; $ssh = Ssh::create('root', $server->ipv4) - ->usePrivateKey(storage_path('private/ssh/id_ed25519')) + ->usePrivateKey(storage_path('app/private/ssh/id_ed25519')) ->onOutput(function ($output) { $this->step->update([ 'logs' => $this->step->logs . "\n" . trim($output),