mirror of
https://github.com/wallabag/wallabag.git
synced 2025-06-27 16:36:00 +00:00
Created scripts folder to store update/install/release process
This commit is contained in:
parent
26490a8794
commit
4e7863c6aa
4 changed files with 39 additions and 26 deletions
11
scripts/update.sh
Normal file
11
scripts/update.sh
Normal file
|
@ -0,0 +1,11 @@
|
|||
#! /usr/bin/env bash
|
||||
|
||||
ENV=$1
|
||||
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
||||
|
||||
rm -rf var/cache/*
|
||||
git fetch origin
|
||||
git fetch --tags
|
||||
git checkout $TAG
|
||||
SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
|
||||
php bin/console cache:clear --env=$ENV
|
Loading…
Add table
Add a link
Reference in a new issue