-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update scripts to include verion 4.26 and document release
- Loading branch information
Showing
6 changed files
with
136 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Development | ||
|
||
## Branches | ||
|
||
This repository contains a branch for each Engine Version. Only perform changes in one of these branches if the changes are specific for this version. All other changes are made in the `master` - this branch uses our base version `UE/4.20`. | ||
|
||
- UE/4.16 [deprecated] | ||
- UE/4.17 [deprecated] | ||
- UE/4.18 [deprecated] | ||
- UE/4.19 [deprecated] | ||
- UE/4.20 = master | ||
- UE/4.21 = master + changed EngineVersion | ||
- UE/4.22 = master + changed EngineVersion | ||
- UE/4.23 = master + changed EngineVersion | ||
- UE/4.24 = master + changed EngineVersion | ||
- UE/4.25 = master + changed EngineVersion | ||
- UE/4.26 = master + changed EngineVersion | ||
|
||
## Release | ||
|
||
The following scripts help to perform a release. | ||
|
||
1. Ensure that all nessessary changes have been made in the `master` branch. | ||
|
||
* Increase Version in StomtPlugin.uplugin | ||
* Update version number in StomtPlugin.uplugin | ||
* Update version number in StomtTrack.cpp line 36 | ||
* commit changes "git commit -am 'bump version to X.X.X" | ||
* create tag "git tag -a vX.X.X" | ||
|
||
2. Use `sh scripts/delete_branches.sh` to remove local changes in other branches. | ||
|
||
3. Update the version branches by running `sh scripts/update_branches.sh`. Confirm the merges and merge commits. | ||
|
||
4. Push the updated branches to GitHub by running `sh scripts/push_branches.sh`. | ||
|
||
5. Now pack the version archives `sh pack.sh` and upload them for the store. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# RESET | ||
git add . | ||
git stash | ||
git checkout master | ||
|
||
|
||
# remove local braches (to remove changes in them) | ||
git branch -D UE/4.20 | ||
git branch -D UE/4.21 | ||
git branch -D UE/4.22 | ||
git branch -D UE/4.23 | ||
git branch -D UE/4.24 | ||
git branch -D UE/4.25 | ||
git branch -D UE/4.26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# RESET | ||
git add . | ||
git stash | ||
git checkout master | ||
|
||
# push tags | ||
git push --tags | ||
|
||
# push all updates | ||
git push origin master \ | ||
UE/4.20 \ | ||
UE/4.21 \ | ||
UE/4.22 \ | ||
UE/4.23 \ | ||
UE/4.24 \ | ||
UE/4.25 \ | ||
UE/4.26 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# RESET | ||
git add . | ||
git stash | ||
git checkout master | ||
|
||
|
||
# UE/4.20 | ||
git checkout UE/4.20 | ||
git merge master | ||
|
||
# UE/4.21 | ||
git checkout UE/4.21 | ||
git merge master | ||
|
||
# UE/4.22 | ||
git checkout UE/4.22 | ||
git merge master | ||
|
||
# UE/4.23 | ||
git checkout UE/4.23 | ||
git merge master | ||
|
||
# UE/4.24 | ||
git checkout UE/4.24 | ||
git merge master | ||
|
||
# UE/4.25 | ||
git checkout UE/4.25 | ||
git merge master | ||
|
||
# UE/4.26 | ||
git checkout UE/4.26 | ||
git merge master | ||
|
||
|
||
## FINISH | ||
git checkout master |