1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/glitchsoc_ynh.git synced 2024-09-03 19:15:59 +02:00

[enh] Switch to tagged release on upgrade

This commit is contained in:
nemsia 2017-04-30 14:24:02 +02:00 committed by GitHub
parent e7ed942684
commit 1b76f0b4da

View file

@ -37,12 +37,20 @@ sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
# Stop Mastodon Services # Stop Mastodon Services
sudo systemctl stop mastodon-*.service sudo systemctl stop mastodon-*.service
# Update Mastodon # Download Mastodon
sudo su - $app <<COMMANDS sudo su - $app <<PULLCOMMANDS
pushd ~/live pushd ~/live
git fetch git fetch
git pull https://github.com/tootsuite/mastodon.git master git pull https://github.com/tootsuite/mastodon.git master
git checkout $(git tag | tail -n 1) PULLCOMMANDS
# Switch branch to tagged release
cd $final_path/live
sudo git checkout $(git tag | tail -n 1)
# Apply Mastodon upgrade
sudo su - $app <<COMMANDS
pushd ~/live
bin/bundle install bin/bundle install
yarn install --pure-lockfile yarn install --pure-lockfile
RAILS_ENV=production bundle exec rails assets:clean RAILS_ENV=production bundle exec rails assets:clean