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
6 changes: 3 additions & 3 deletions docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ This document describes how to release a new version of the sdlc-workflow plugin

4. **Push to the default branch.**

5. **Create a GitHub release** — tag the release commit and create a GitHub release with notes from the changelog:
5. **Create a GitHub release** — tag the release commit and create a GitHub release on `RHEcosystemAppEng/sdlc-plugins` with notes from the changelog:
```bash
git tag vX.Y.Z <commit-sha>
git push origin vX.Y.Z
gh release create vX.Y.Z --title "vX.Y.Z" --latest --notes "<changelog section for this version>"
git push <remote> vX.Y.Z # push to RHEcosystemAppEng/sdlc-plugins
gh release create vX.Y.Z --repo RHEcosystemAppEng/sdlc-plugins --title "vX.Y.Z" --latest --notes "<changelog section for this version>"
```
Use the corresponding `CHANGELOG.md` section as the release notes body.

Expand Down
Loading