Fix upload-github.sh target branch

And make all scripts executable.
This commit is contained in:
Rémi Verschelde
2023-10-12 09:21:52 +02:00
parent e0fbe2af47
commit 3a2388aa4b
6 changed files with 1 additions and 1 deletions

0
tools/bootstrap/generate-history.py Normal file → Executable file
View File

0
tools/bootstrap/generate-metadata.py Normal file → Executable file
View File

0
tools/bootstrap/generate-releases.py Normal file → Executable file
View File

0
tools/create-release-metadata.py Normal file → Executable file
View File

0
tools/create-release-notes.py Normal file → Executable file
View File

2
tools/upload-github.sh Normal file → Executable file
View File

@@ -74,7 +74,7 @@ cd $buildsdir
git add ./releases/godot-$release_tag.json
git commit -m "Add Godot $release_tag"
git tag $release_tag
if ! git push --atomic origin release-automation $release_tag; then
if ! git push --atomic origin main $release_tag; then
echo "Failed to push release metadata for $release_tag to GitHub."
exit 1
fi