diff --git a/src/limenet/Deploy/Deploy.php b/src/limenet/Deploy/Deploy.php index 7f6ef22..4c1045e 100644 --- a/src/limenet/Deploy/Deploy.php +++ b/src/limenet/Deploy/Deploy.php @@ -134,6 +134,8 @@ protected function checkBranch() : bool { if ($this->branch === 'master') { return strpos($this->payload['ref'], 'refs/tags/') !== false; + } elseif ($this->branch === 'dev-master') { + return $this->payload['ref'] === 'refs/heads/master'; } else { return $this->payload['ref'] === 'refs/heads/'.$this->branch; }