]> Untitled Git - lemmy.git/commitdiff
Fixing the release script. (#3295)
authorDessalines <dessalines@users.noreply.github.com>
Tue, 27 Jun 2023 08:28:56 +0000 (04:28 -0400)
committerGitHub <noreply@github.com>
Tue, 27 Jun 2023 08:28:56 +0000 (10:28 +0200)
* Fixing the release script.

* Updating the submodules.

scripts/release.sh

index 4b9fdd8e189404af507a0a6d36a9d8300c0aa3b3..2df168c4316241bf199d903a089e64f5e07f34e9 100755 (executable)
@@ -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