@@ -49,10 +49,10 @@ the existing content.
4949* Work off direct clones of the repos so the release branches persist for a time
5050* Clone both ** codeigniter4/CodeIgniter4** and ** codeigniter4/userguide** and
5151 resolve any necessary PRs
52- ``` console
53- git clone git@github.com:codeigniter4/CodeIgniter4.git
54- git clone git@github.com:codeigniter4/userguide.git
55- ```
52+ ``` console
53+ git clone git@github.com:codeigniter4/CodeIgniter4.git
54+ git clone git@github.com:codeigniter4/userguide.git
55+ ```
5656* Vet the **admin/** folders for any removed hidden files (Action deploy scripts
5757 *do not remove these*)
5858* Merge any Security Advisory PRs in private forks
@@ -90,52 +90,52 @@ git clone git@github.com:codeigniter4/userguide.git
9090 * Target: master
9191 * Title: "CodeIgniter 4.x.x"
9292 * Description:
93- ```
94- CodeIgniter 4.x.x release.
93+ ```
94+ CodeIgniter 4.x.x release.
9595
96- See the changelog: https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md
96+ See the changelog: https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md
9797
98- ## New Contributors
99- *
98+ ## New Contributors
99+ *
100100
101- Full Changelog: https://github.com/codeigniter4/CodeIgniter4/compare/v4.x.x...v4.x.x
102- ```
101+ Full Changelog: https://github.com/codeigniter4/CodeIgniter4/compare/v4.x.x...v4.x.x
102+ ```
103103* Watch for the "Deploy Distributable Repos" action to make sure **framework**,
104104 **appstarter**, and **userguide** get updated
105105* Run the following commands to install and test `appstarter` and verify the new
106106 version:
107- ``` console
108- composer create-project codeigniter4/appstarter release-test
109- cd release-test
110- composer test && composer info codeigniter4/framework
111- ```
107+ ```console
108+ composer create-project codeigniter4/appstarter release-test
109+ cd release-test
110+ composer test && composer info codeigniter4/framework
111+ ```
112112* Verify that the user guide actions succeeded:
113113 * "[Deploy Distributable Repos](https://github.com/codeigniter4/CodeIgniter4/actions/workflows/deploy-distributables.yml)", the main repo
114114 * "[Deploy Production](https://github.com/codeigniter4/userguide/actions/workflows/deploy.yml)", UG repo
115115 * "[pages-build-deployment](https://github.com/codeigniter4/userguide/actions/workflows/pages/pages-build-deployment)", UG repo
116116* Fast-forward `develop` branch to catch the merge commit from `master`
117- ``` console
118- git fetch origin
119- git checkout develop
120- git merge origin/develop
121- git merge origin/master
122- git push origin HEAD
123- ```
117+ ```console
118+ git fetch origin
119+ git checkout develop
120+ git merge origin/develop
121+ git merge origin/master
122+ git push origin HEAD
123+ ```
124124* Update the next minor upgrade branch `4.x`:
125- ``` console
126- git fetch origin
127- git checkout 4.x
128- git merge origin/4.x
129- git merge origin/develop
130- git push origin HEAD
131- ```
125+ ```console
126+ git fetch origin
127+ git checkout 4.x
128+ git merge origin/4.x
129+ git merge origin/develop
130+ git push origin HEAD
131+ ```
132132* [Minor version only] Create the next minor upgrade branch `4.x`:
133- ``` console
134- git fetch origin
135- git switch develop
136- git switch -c 4.x
137- git push origin HEAD
138- ```
133+ ```console
134+ git fetch origin
135+ git switch develop
136+ git switch -c 4.x
137+ git push origin HEAD
138+ ```
139139* Publish any Security Advisories that were resolved from private forks
140140* Announce the release on the forums and Slack channel
141141 (note: this forum is restricted to administrators):
0 commit comments