2019-08-25 17:57:05 +00:00
|
|
|
#!/bin/sh
|
2020-06-12 13:29:50 +00:00
|
|
|
set -e
|
2020-10-02 15:24:16 +00:00
|
|
|
#git checkout main
|
2019-08-25 17:57:05 +00:00
|
|
|
|
|
|
|
# Creating the new tag
|
|
|
|
new_tag="$1"
|
2020-10-02 15:24:16 +00:00
|
|
|
#third_semver=$(echo $new_tag | cut -d "." -f 3)
|
2020-01-01 16:39:23 +00:00
|
|
|
|
2019-08-25 17:57:05 +00:00
|
|
|
# Setting the version on the front end
|
2019-11-22 01:45:21 +00:00
|
|
|
cd ../../
|
2019-11-15 02:08:25 +00:00
|
|
|
# Setting the version on the backend
|
2020-09-24 13:53:21 +00:00
|
|
|
echo "pub const VERSION: &str = \"$new_tag\";" > "lemmy_api/src/version.rs"
|
|
|
|
git add "lemmy_api/src/version.rs"
|
2020-01-31 11:03:26 +00:00
|
|
|
# Setting the version for Ansible
|
2020-02-29 20:49:09 +00:00
|
|
|
echo $new_tag > "ansible/VERSION"
|
2020-01-31 11:03:26 +00:00
|
|
|
git add "ansible/VERSION"
|
2019-08-25 17:57:05 +00:00
|
|
|
|
2020-06-12 13:29:50 +00:00
|
|
|
cd docker/prod || exit
|
2019-11-22 01:45:21 +00:00
|
|
|
|
2020-10-02 15:24:16 +00:00
|
|
|
# Changing various references to the Lemmy version
|
|
|
|
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
|
2019-08-25 17:57:05 +00:00
|
|
|
sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../prod/docker-compose.yml
|
2020-10-02 15:24:16 +00:00
|
|
|
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../prod/docker-compose.yml
|
2020-07-25 02:06:00 +00:00
|
|
|
sed -i "s/dessalines\/lemmy:v.*/dessalines\/lemmy:$new_tag/" ../travis/docker_push.sh
|
2020-10-02 15:24:16 +00:00
|
|
|
|
|
|
|
git add ../dev/docker-compose.yml
|
|
|
|
git add ../federation/docker-compose.yml
|
2019-08-25 17:57:05 +00:00
|
|
|
git add ../prod/docker-compose.yml
|
2020-07-25 02:06:00 +00:00
|
|
|
git add ../travis/docker_push.sh
|
2019-08-25 17:57:05 +00:00
|
|
|
|
|
|
|
# The commit
|
2019-10-15 23:50:00 +00:00
|
|
|
git commit -m"Version $new_tag"
|
2020-02-29 19:25:35 +00:00
|
|
|
git tag $new_tag
|
2019-08-25 17:57:05 +00:00
|
|
|
|
2020-07-25 02:06:00 +00:00
|
|
|
# Now doing the building on travis, but leave this in for when you need to do an arm build
|
|
|
|
|
|
|
|
# export COMPOSE_DOCKER_CLI_BUILD=1
|
|
|
|
# export DOCKER_BUILDKIT=1
|
|
|
|
|
|
|
|
# # Rebuilding docker
|
|
|
|
# if [ $third_semver -eq 0 ]; then
|
|
|
|
# # TODO get linux/arm/v7 build working
|
|
|
|
# # Build for Raspberry Pi / other archs too
|
|
|
|
# docker buildx build --platform linux/amd64,linux/arm64 ../../ \
|
|
|
|
# --file Dockerfile \
|
|
|
|
# --tag dessalines/lemmy:$new_tag \
|
|
|
|
# --push
|
|
|
|
# else
|
|
|
|
# docker buildx build --platform linux/amd64 ../../ \
|
|
|
|
# --file Dockerfile \
|
|
|
|
# --tag dessalines/lemmy:$new_tag \
|
|
|
|
# --push
|
|
|
|
# fi
|
2019-11-01 03:03:43 +00:00
|
|
|
|
2019-11-23 00:17:20 +00:00
|
|
|
# Push
|
|
|
|
git push origin $new_tag
|
|
|
|
git push
|
|
|
|
|
2019-09-02 17:37:30 +00:00
|
|
|
# Pushing to any ansible deploys
|
2020-07-25 02:06:00 +00:00
|
|
|
# cd ../../../lemmy-ansible || exit
|
|
|
|
# ansible-playbook -i prod playbooks/site.yml --vault-password-file vault_pass
|