]> Untitled Git - lemmy.git/blobdiff - scripts/release.sh
Sanitize html (#3708)
[lemmy.git] / scripts / release.sh
index 9df989e66c0fb11b9ace606e514770ff17fc5cbb..76cb2dbfb507a52015e29395ff2a3418bbc5def8 100755 (executable)
@@ -1,25 +1,28 @@
 #!/bin/sh
+set -e
 #git checkout main
 
-pushd ../docker/prod/
-
 # Creating the new tag
 new_tag="$1"
 third_semver=$(echo $new_tag | cut -d "." -f 3)
 
+# Goto the upper route
+CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
+cd $CWD/../
+
 # The ansible and docker installs should only update for non release-candidates
 # IE, when the third semver is a number, not '2-rc'
 if [ ! -z "${third_semver##*[!0-9]*}" ]; then
-  sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../prod/docker-compose.yml
-  sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../prod/docker-compose.yml
-  sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../dev/docker-compose.yml
-  sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../federation/docker-compose.yml
-  git add ../prod/docker-compose.yml
-  git add ../dev/docker-compose.yml
-  git add ../federation/docker-compose.yml
+  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
+  popd
 
   # Setting the version for Ansible
-  pushd ../../../lemmy-ansible
+  pushd ../lemmy-ansible
   echo $new_tag > "VERSION"
   git add "VERSION"
   git commit -m"Updating VERSION"
@@ -29,16 +32,17 @@ if [ ! -z "${third_semver##*[!0-9]*}" ]; then
   popd
 fi
 
-# Update crate versions for crates.io
-pushd ../../
-old_tag=$(head -3 Cargo.toml | tail -1 | cut -d'"' -f 2)
-# same as above, for the main cargo.toml
+# Update crate versions
+old_tag=$(grep version Cargo.toml | head -1 | cut -d'"' -f 2)
 sed -i "s/{ version = \"=$old_tag\", path/{ version = \"=$new_tag\", path/g" Cargo.toml
 sed -i "s/version = \"$old_tag\"/version = \"$new_tag\"/g" Cargo.toml
 git add Cargo.toml
 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"