We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c86214 commit be250d1Copy full SHA for be250d1
2 files changed
RoboFile.php
@@ -2,11 +2,12 @@
2
3
class Robofile extends \Robo\Tasks
4
{
5
- public function changelog()
+ public function release()
6
7
+ $version = file_get_contents('VERSION');
8
// ask for changes in this release
9
$changelog = $this->taskChangelog()
- ->version(\Robo\Runner::VERSION)
10
+ ->version($version)
11
->askForChanges();
12
13
// adding changelog and pushing it
@@ -15,8 +16,8 @@ public function changelog()
15
16
$this->taskExec('git push')->run();
17
18
// create GitHub release
- $this->taskGitHubRelease(\Robo\Runner::VERSION)
19
- ->uri('Codegyre/Robo')
+ $this->taskGitHubRelease($version)
20
+ ->uri('Codeception/Specify')
21
->askDescription()
22
->changes($changelog->getChanges())
23
->run();
VERSION
@@ -1 +1 @@
1
-0.3.3
+0.3.4
0 commit comments