Update lemmy-ui version in docker-compose files on release (fixes #1164) #111

Merged
dessalines merged 1 commits from update-lemmy-ui into main 2020-10-05 16:49:53 +00:00
1 changed files with 9 additions and 5 deletions

View File

@ -1,10 +1,10 @@
#!/bin/sh
set -e
git checkout main
#git checkout main
# Creating the new tag
new_tag="$1"
third_semver=$(echo $new_tag | cut -d "." -f 3)
#third_semver=$(echo $new_tag | cut -d "." -f 3)

unused

unused
# Setting the version on the front end
cd ../../
@ -17,12 +17,16 @@ git add "ansible/VERSION"
cd docker/prod || exit
# Changing the docker-compose prod
# 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
sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../prod/docker-compose.yml
sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../../ansible/templates/docker-compose.yml
Review

This file doesnt contain the version (its fetched during the ansible run).

This file doesnt contain the version (its fetched during the ansible run).
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../prod/docker-compose.yml
sed -i "s/dessalines\/lemmy:v.*/dessalines\/lemmy:$new_tag/" ../travis/docker_push.sh
git add ../dev/docker-compose.yml
git add ../federation/docker-compose.yml
git add ../prod/docker-compose.yml
git add ../../ansible/templates/docker-compose.yml
git add ../travis/docker_push.sh
# The commit

I think you forgot to remove this one.

I think you forgot to remove this one.

Whoops, fixed.

Whoops, fixed.