From 09c0c289b90e73d2c041e63c99f2086ecc9456ae Mon Sep 17 00:00:00 2001 From: Steven Peercy Date: Mon, 7 Aug 2023 00:35:42 -0400 Subject: [PATCH] fix: Correct route for deploy action (#723) --- src/API/Management/Actions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/API/Management/Actions.php b/src/API/Management/Actions.php index 493ecd1a..e6710911 100644 --- a/src/API/Management/Actions.php +++ b/src/API/Management/Actions.php @@ -70,7 +70,7 @@ public function deploy( ])->isString(); return $this->getHttpClient() - ->method('post')->addPath(['actions', $id, 'deploy']) + ->method('post')->addPath(['actions', 'actions', $id, 'deploy']) ->withOptions($options) ->call(); }