2019-08-25 13:57:05 -04:00
|
|
|
#!/bin/sh
|
2020-06-12 09:29:50 -04:00
|
|
|
set -e
|
2020-10-02 11:24:16 -04:00
|
|
|
#git checkout main
|
2019-08-25 13:57:05 -04: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
|
|
|
|
2019-11-14 21:08:25 -05:00
|
|
|
# Setting the version on the backend
|
2021-03-20 14:49:07 -04:00
|
|
|
pushd ../../
|
2021-02-19 13:05:42 -05:00
|
|
|
echo "pub const VERSION: &str = \"$new_tag\";" > "crates/utils/src/version.rs"
|
|
|
|
git add "crates/utils/src/version.rs"
|
2021-03-20 14:49:07 -04:00
|
|
|
popd
|
2019-11-21 20:45:21 -05:00
|
|
|
|
2020-10-02 11:24:16 -04:00
|
|
|
# Changing various references to the Lemmy version
|
|
|
|
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../dev/docker-compose.yml
|
2021-01-15 12:38:44 -05:00
|
|
|
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../federation/docker-compose.yml
|
2020-10-02 11:24:16 -04:00
|
|
|
git add ../dev/docker-compose.yml
|
2021-01-15 13:31:10 -05:00
|
|
|
git add ../federation/docker-compose.yml
|
2019-08-25 13:57:05 -04:00
|
|
|
|
2021-03-20 14:49:07 -04:00
|
|
|
# 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
|
|
|
|
git add ../prod/docker-compose.yml
|
|
|
|
|
|
|
|
# Setting the version for Ansible
|
|
|
|
pushd ../../
|
|
|
|
echo $new_tag > "ansible/VERSION"
|
|
|
|
git add "ansible/VERSION"
|
|
|
|
popd
|
|
|
|
fi
|
|
|
|
|
2019-08-25 13:57:05 -04:00
|
|
|
# The commit
|
2019-10-15 19:50:00 -04:00
|
|
|
git commit -m"Version $new_tag"
|
2020-02-29 14:25:35 -05:00
|
|
|
git tag $new_tag
|
2019-08-25 13:57:05 -04:00
|
|
|
|
2020-07-24 22:06:00 -04:00
|
|
|
# export COMPOSE_DOCKER_CLI_BUILD=1
|
|
|
|
# export DOCKER_BUILDKIT=1
|
|
|
|
|
2019-11-22 19:17:20 -05:00
|
|
|
# Push
|
|
|
|
git push origin $new_tag
|
|
|
|
git push
|
|
|
|
|
2019-09-02 13:37:30 -04: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
|