There was an error while loading. Please reload this page.
1 parent 7ae4f9c commit 82c7d02Copy full SHA for 82c7d02
src/App/Command/Release/MakeCommand.php
@@ -182,9 +182,9 @@ protected function processPackage(Package $package): void
182
'm' => 'Prepare for next release',
183
]);
184
185
- if ($this->confirm('Push commits and tags, and release on GitHub?')) {
+ if ($this->confirm('Push commits and tag, and release on GitHub?')) {
186
$git->push();
187
- $git->pushTags();
+ $git->pushTag((string) $versionToRelease);
188
189
$this->releaseOnGithub($package, $versionToRelease);
190
0 commit comments