mirror of
https://github.com/YunoHost-Apps/mastodon_ynh.git
synced 2024-09-03 19:46:02 +02:00
[fix] Switch branch to tagged release
This commit is contained in:
parent
b7789afb50
commit
b9fc55ae81
1 changed files with 10 additions and 4 deletions
|
@ -37,13 +37,19 @@ sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
|||
# Stop Mastodon Services
|
||||
sudo systemctl stop mastodon-*.service
|
||||
|
||||
# Update Mastodon
|
||||
pushd /opt/mastodon/live
|
||||
sudo su - $app <<COMMANDS
|
||||
# Download Mastodon
|
||||
sudo su - $app <<PULLCOMMANDS
|
||||
pushd ~/live
|
||||
git fetch
|
||||
git pull https://github.com/tootsuite/mastodon.git master
|
||||
git checkout $(git tag | tail -n 1)
|
||||
PULLCOMMANDS
|
||||
|
||||
# Switch branch to tagged release
|
||||
pushd /opt/mastodon/live
|
||||
sudo git checkout $(git tag | tail -n 1)
|
||||
|
||||
# Apply Mastodon upgrade
|
||||
sudo su - $app <<COMMANDS
|
||||
bin/bundle install
|
||||
yarn install --pure-lockfile
|
||||
RAILS_ENV=production bundle exec rails assets:clean
|
||||
|
|
Loading…
Reference in a new issue