]> Untitled Git - lemmy.git/blob - scripts/release.sh
Run cargo update as part of release script (#3369)
[lemmy.git] / scripts / release.sh
1 #!/bin/sh
2 set -e
3 #git checkout main
4
5 # Creating the new tag
6 new_tag="$1"
7 third_semver=$(echo $new_tag | cut -d "." -f 3)
8
9 # The ansible and docker installs should only update for non release-candidates
10 # IE, when the third semver is a number, not '2-rc'
11 if [ ! -z "${third_semver##*[!0-9]*}" ]; then
12   pushd ../docker
13   sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" docker-compose.yml
14   sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" docker-compose.yml
15   sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" federation/docker-compose.yml
16   git add docker-compose.yml
17   git add federation/docker-compose.yml
18   popd
19
20   # Setting the version for Ansible
21   pushd ../../lemmy-ansible
22   echo $new_tag > "VERSION"
23   git add "VERSION"
24   git commit -m"Updating VERSION"
25   git tag $new_tag
26   git push origin $new_tag
27   git push
28   popd
29 fi
30
31 # Update crate versions
32 pushd ..
33 old_tag=$(grep version Cargo.toml | head -1 | cut -d'"' -f 2)
34 sed -i "s/{ version = \"=$old_tag\", path/{ version = \"=$new_tag\", path/g" Cargo.toml
35 sed -i "s/version = \"$old_tag\"/version = \"$new_tag\"/g" Cargo.toml
36 git add Cargo.toml
37 cargo update
38 cargo check
39 git add Cargo.lock
40 popd
41
42 # Update the submodules
43 git submodule update --remote
44 git add crates/utils/translations
45
46 # The commit
47 git commit -m"Version $new_tag"
48 git tag $new_tag
49
50 # export COMPOSE_DOCKER_CLI_BUILD=1
51 # export DOCKER_BUILDKIT=1
52
53 # Push
54 git push origin $new_tag
55 git push
56
57 # Pushing to any ansible deploys
58 # cd ../../../lemmy-ansible || exit
59 # ansible-playbook -i prod playbooks/site.yml --vault-password-file vault_pass