diff --git a/scripts/release.sh b/scripts/release.sh index 4b9fdd8e1..2df168c43 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -10,15 +10,15 @@ third_semver=$(echo $new_tag | cut -d "." -f 3) # IE, when the third semver is a number, not '2-rc' if [ ! -z "${third_semver##*[!0-9]*}" ]; then pushd ../docker - sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../docker-compose.yml - sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../docker-compose.yml - sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../federation/docker-compose.yml - git add ../docker-compose.yml - git add ../federation/docker-compose.yml + sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" docker-compose.yml + sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" docker-compose.yml + sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" federation/docker-compose.yml + git add docker-compose.yml + git add federation/docker-compose.yml popd # Setting the version for Ansible - pushd ../../../lemmy-ansible + pushd ../../lemmy-ansible echo $new_tag > "VERSION" git add "VERSION" git commit -m"Updating VERSION" @@ -38,6 +38,10 @@ cargo check git add Cargo.lock popd +# Update the submodules +git submodule update --remote +git add crates/utils/translations + # The commit git commit -m"Version $new_tag" git tag $new_tag