diff --git a/trigger_release.sh b/trigger_release.sh new file mode 100755 index 0000000..888a10a --- /dev/null +++ b/trigger_release.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# 1. Update version to 2.4.1 in project.godot +sed -i 's/config\/version="2.4.0"/config\/version="2.4.1"/g' project.godot + +# 2. Update CHANGELOG_DRAFT.md to reflect final 2.4.1 version +sed -i 's/## \[2.4.1-experimental\]/## \[2.4.1\]/g' CHANGELOG_DRAFT.md + +# 3. Commit the version bump +git add project.godot CHANGELOG_DRAFT.md +git commit -m "Bump version to 2.4.1 for release" +git push origin experimental + +# 4. Tag the commit with v2.4.1 and push the tag to trigger the build workflow +git tag -a v2.4.1 -m "Release 2.4.1: Gauntlet mode updates and fixes" +git push origin v2.4.1