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),