2019-08-25 10:57:05 -07:00
|
|
|
#!/bin/sh
|
2023-02-01 00:26:51 +09:00
|
|
|
set -e
|
2020-10-02 17:24:16 +02:00
|
|
|
#git checkout main
|
2019-08-25 10:57:05 -07:00
|
|
|
|
|
|
|
# Creating the new tag
|
|
|
|
new_tag="$1"
|
2021-03-20 14:49:07 -04:00
|
|
|
third_semver=$(echo $new_tag | cut -d "." -f 3)
|
2020-01-01 11:39:23 -05:00
|
|
|
|
2023-06-29 10:17:59 -04:00
|
|
|
# Goto the upper route
|
|
|
|
CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
2024-08-22 08:33:00 -07:00
|
|
|
cd "$CWD/../"
|
2023-06-29 10:17:59 -04:00
|
|
|
|
2024-06-07 11:26:43 -04:00
|
|
|
# The docker installs should only update for non release-candidates
|
2021-03-20 14:49:07 -04:00
|
|
|
# IE, when the third semver is a number, not '2-rc'
|
|
|
|
if [ ! -z "${third_semver##*[!0-9]*}" ]; then
|
2023-06-29 10:17:59 -04:00
|
|
|
pushd docker
|
2023-06-27 04:28:56 -04:00
|
|
|
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
|
2023-02-01 00:26:51 +09:00
|
|
|
popd
|
2021-03-20 14:49:07 -04:00
|
|
|
fi
|
|
|
|
|
2023-02-01 00:26:51 +09:00
|
|
|
# Update crate versions
|
|
|
|
old_tag=$(grep version Cargo.toml | head -1 | cut -d'"' -f 2)
|
2021-08-09 17:37:06 +02:00
|
|
|
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
|
2021-08-25 17:26:10 -04:00
|
|
|
git add Cargo.toml
|
|
|
|
cargo check
|
|
|
|
git add Cargo.lock
|
2021-08-09 17:37:06 +02:00
|
|
|
|
2023-06-27 04:28:56 -04:00
|
|
|
# Update the submodules
|
|
|
|
git submodule update --remote
|
|
|
|
git add crates/utils/translations
|
|
|
|
|
2019-08-25 10:57:05 -07:00
|
|
|
# The commit
|
2019-10-15 16:50:00 -07:00
|
|
|
git commit -m"Version $new_tag"
|
2020-02-29 20:25:35 +01:00
|
|
|
git tag $new_tag
|
2019-08-25 10:57:05 -07:00
|
|
|
|
2020-07-24 22:06:00 -04:00
|
|
|
# export COMPOSE_DOCKER_CLI_BUILD=1
|
|
|
|
# export DOCKER_BUILDKIT=1
|
|
|
|
|
2019-11-22 16:17:20 -08:00
|
|
|
# Push
|
|
|
|
git push origin $new_tag
|
|
|
|
git push
|
|
|
|
|
2019-09-02 10:37:30 -07:00
|
|
|
# Pushing to any ansible deploys
|
2020-07-24 22:06:00 -04:00
|
|
|
# cd ../../../lemmy-ansible || exit
|
|
|
|
# ansible-playbook -i prod playbooks/site.yml --vault-password-file vault_pass
|