Skip to content

Commit

Permalink
Fix typos in release process
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Feb 21, 2021
1 parent fccfdd7 commit ab870fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions RoboFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public function release(ConsoleIO $io, $opts = ['beta' => false])
$this->publish($io);
$this->collectionBuilder($io)->taskGitStack()
->tag($version)
->push('origin ' . MAIN_BRANCH . ' --tags')
->push('origin ' . self::MAIN_BRANCH . ' --tags')
->run();

if ($stable) {
Expand Down Expand Up @@ -337,7 +337,7 @@ public function publish(ConsoleIO $io)
return $this->collectionBuilder($io)
->taskGitStack()
->checkout('site')
->merge(MAIN_BRANCH)
->merge(self::MAIN_BRANCH)
->completion($this->taskGitStack()->checkout($current_branch))
->taskFilesystemStack()
->copy('CHANGELOG.md', 'docs/changelog.md')
Expand Down Expand Up @@ -483,7 +483,7 @@ public function pharPublish(ConsoleIO $io)
->add('robotheme/robo.phar')
->commit('Update robo.phar to ' . \Robo\Robo::VERSION)
->push('origin site')
->checkout(MAIN_BRANCH)
->checkout(self::MAIN_BRANCH)
->run();
}
}
2 changes: 1 addition & 1 deletion src/Robo.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
class Robo
{
const APPLICATION_NAME = 'Robo';
const VERSION = '3.0.1';
const VERSION = '3.0.2-dev';

/**
* The currently active container object, or NULL if not initialized yet.
Expand Down

0 comments on commit ab870fa

Please sign in to comment.