Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit fcc7084

Browse files
authored
Merge pull request #1678 from reicast/skmp/release-scripts
Add draft release scripts
2 parents 13a0bf2 + e9e51d1 commit fcc7084

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

versioning/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Release scripts and such are here

versioning/changelog-beta.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
git log --merges --pretty=format:"- %b [%h, %an]" --abbrev-commit beta...alpha

versioning/changelog-stable.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
git log --merges --pretty=format:"- %b [%h, %an]" --abbrev-commit stable...alpha

versioning/release-beta.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
echo "Make sure repo is up to date"
2+
git checkout origin/alpha
3+
git tag -a $1 -m "Reicast $1\n---\n`./changelog-beta.sh`"
4+
git checkout beta
5+
git reset --hard origin/alpha
6+
echo "You need to do:"
7+
echo "git push origin $1:$1 # push tag"
8+
echo "git push # push beta branch"

0 commit comments

Comments
 (0)