Skip to content

Commit

Permalink
Merge pull request #8678 from kenjis/update-prepare-release
Browse files Browse the repository at this point in the history
docs: slight update to release process
  • Loading branch information
kenjis authored Mar 30, 2024
2 parents 7cc6a9f + 1079c80 commit 9b1fffe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions admin/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Work off direct clones of the repos so the release branches persist for a time.
> generating much new content.
* [ ] Replace **CHANGELOG.md** with the new version generated above
* [ ] Update **user_guide_src/source/changelogs/{version}.rst**
* [ ] Update **user_guide_src/source/changelogs/v4.x.x.rst**
* Remove the section titles that have no items
* [ ] Update **user_guide_src/source/installation/upgrade_{ver}.rst**
* fill in the "All Changes" section, and add it to **upgrading.rst**
Expand Down Expand Up @@ -150,10 +150,10 @@ Work off direct clones of the repos so the release branches persist for a time.
composer test && composer info codeigniter4/framework
```
* [ ] Verify that the user guide actions succeeded:
* "[Deploy Distributable Repos](https://github.com/codeigniter4/CodeIgniter4/actions/workflows/deploy-distributables.yml)", the main repo
* "[Deploy Production](https://github.com/codeigniter4/userguide/actions/workflows/deploy.yml)", UG repo
* "[pages-build-deployment](https://github.com/codeigniter4/userguide/actions/workflows/pages/pages-build-deployment)", UG repo
* Check if "CodeIgniter4.x.x.epub" is added to UG repo. "CodeIgniter.epub" was
* [ ] "[Deploy Distributable Repos](https://github.com/codeigniter4/CodeIgniter4/actions/workflows/deploy-distributables.yml)", the main repo
* [ ] "[Deploy Production](https://github.com/codeigniter4/userguide/actions/workflows/deploy.yml)", UG repo
* [ ] "[pages-build-deployment](https://github.com/codeigniter4/userguide/actions/workflows/pages/pages-build-deployment)", UG repo
* [ ] Check if "CodeIgniter4.x.x.epub" is added to UG repo. "CodeIgniter.epub" was
created when v4.3.8 was released.
* [ ] Fast-forward `develop` branch to catch the merge commit from `master`
```console
Expand Down
1 change: 1 addition & 0 deletions admin/prepare-release.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ function replace_file_content(string $path, string $pattern, string $replace): v

// Creates a branch for release.
system('git switch develop');
system('git branch -D release-' . $version);
system('git switch -c release-' . $version);

// Updates version number in "CodeIgniter.php".
Expand Down

0 comments on commit 9b1fffe

Please sign in to comment.