mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 08:54:01 +00:00
Nutomic
b8a6592369
* publish docker images from main * try with separate step * redo, lots of boilerplate * try to fix syntax * unique step names * fix docker tags, remove cargo-chef * only build dev image on main branch * use `ref` for condition, as `branch` uses the target branch for PRs * consistent indents * fix tag * use lemmy-ui:dev image for `docker/dev` and `docker/federation`
42 lines
1.1 KiB
Bash
Executable file
42 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
#git checkout main
|
|
|
|
# Creating the new tag
|
|
new_tag="$1"
|
|
third_semver=$(echo $new_tag | cut -d "." -f 3)
|
|
|
|
# Setting the version on the backend
|
|
pushd ../../
|
|
echo "pub const VERSION: &str = \"$new_tag\";" > "crates/utils/src/version.rs"
|
|
git add "crates/utils/src/version.rs"
|
|
popd
|
|
|
|
# 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
|
|
|
|
# The commit
|
|
git commit -m"Version $new_tag"
|
|
git tag $new_tag
|
|
|
|
# export COMPOSE_DOCKER_CLI_BUILD=1
|
|
# export DOCKER_BUILDKIT=1
|
|
|
|
# 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
|