Files
tekton/trigger_release.sh
T
2026-06-29 09:57:12 +08:00

16 lines
590 B
Bash
Executable File

#!/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