Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion release
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ function generateReleaseCommands(string $changelogPath, string $version): void
throw new \Exception(sprintf('The "%s" composer file does not contains the "name" section', $composerPath));
}

$repo = $composer['name'];
$repo = strtr($composer['name'], [
'async-aws/async-aws-bundle' => 'async-aws/symfony-bundle',
]);
$command = sprintf('gh release create %s --title "Release %s" --notes "See [change log](CHANGELOG.md) for changes." --latest --target master --repo %s', $version, $version, $repo);
dump($command);
}
Expand Down
Loading