Skip to content

Release Process #6496

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 5, 2022
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
47 changes: 18 additions & 29 deletions admin/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,7 @@ git clone [email protected]:codeigniter4/userguide.git
* Create a new PR from `develop` to `master`:
* Title: "4.x.x Ready code"
* Description: blank
* Merge the PR then fast-forward `develop` to catch the merge commit
* Update the next minor upgrade branch `4.x`
```console
git fetch origin
git checkout 4.x
git merge origin/4.x
git merge origin/develop
git push origin HEAD
```
* Create a new Release:
* Merge the PR then create a new Release:
* Version: "v4.x.x"
* Title: "CodeIgniter 4.x.x"
* Description:
Expand All @@ -76,25 +67,23 @@ composer create-project codeigniter4/appstarter release-test
cd release-test
composer test && composer info codeigniter4/framework
```
* publish any Security Advisories that were resolved from private forks

## User Guide

**This is now handled by GitHub Actions!**

Verify that the Actions succeeded:
* "Deploy User Guide", this repo
* "Deploy Production", UG repo
* "pages-build-deployment", both repos

See the legacy notes in Appendix for reference or to help manually recover from workflow failures.

## Announcement

> Note: This forum is restricted to administrators.

* Make a new topic in the "News & Discussion" forums: https://forum.codeigniter.com/forum-2.html
* The content is somewhat organic, but should include any major features and changes as well as a link to the User Guide's changelog
* Verify that the User Guide Actions succeeded:
* "Deploy User Guide", framework repo
* "Deploy Production", UG repo
* "pages-build-deployment", both repos
* Fast-forward `develop` branch to catch the merge commit from `master`
* Update the next minor upgrade branch `4.x`:
```console
git fetch origin
git checkout 4.x
git merge origin/4.x
git merge origin/develop
git push origin HEAD
```
* Publish any Security Advisories that were resolved from private forks
* Announce the release on the forums and Slack channel (note: this forum is restricted to administrators):
* Make a new topic in the "News & Discussion" forums: https://forum.codeigniter.com/forum-2.html
* The content is somewhat organic, but should include any major features and changes as well as a link to the User Guide's changelog

## After Publishing Security Advisory

Expand Down