Skip to content

Commit

Permalink
Publish the phar before publishing the site.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed May 27, 2020
1 parent 182af57 commit 76ad1fb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion RoboFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,17 @@ public function release($opts = ['beta' => false])
->push()
->run();

if ($stable) {
$this->pharPublish();
}

$this->publish();
$this->taskGitStack()
->tag($version)
->push('origin master --tags')
->run();

if ($stable) {
$this->pharPublish();
$version = $this->incrementVersion($version) . '-dev';
$this->writeVersion($version);

Expand Down

0 comments on commit 76ad1fb

Please sign in to comment.