lemmy/docker/prod/deploy.sh

37 lines
965 B
Bash
Raw Normal View History

2019-08-25 17:57:05 +00:00
#!/bin/sh
2020-06-12 13:29:50 +00:00
set -e
#git checkout main
2019-08-25 17:57:05 +00:00
# Creating the new tag
new_tag="$1"
third_semver=$(echo $new_tag | cut -d "." -f 3)
# 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
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 17:57:05 +00:00
# The commit
2019-10-15 23:50:00 +00:00
git commit -m"Version $new_tag"
git tag $new_tag
2019-08-25 17:57:05 +00:00
# export COMPOSE_DOCKER_CLI_BUILD=1
# export DOCKER_BUILDKIT=1
2019-11-23 00:17:20 +00:00
# Push
git push origin $new_tag
git push
# Pushing to any ansible deploys
# cd ../../../lemmy-ansible || exit
# ansible-playbook -i prod playbooks/site.yml --vault-password-file vault_pass