diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2019-05-29 12:49:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-29 12:49:32 +0200 |
commit | e9579d6de9ea99522e5905e8bb827e858c8da1fc (patch) | |
tree | c5db9d2024efd99ea07fc66f4649d3412115d499 /scripts | |
parent | 73ec68b1ffafb792265a3805833e5cd84c966aed (diff) | |
parent | 2770b6d77d0dff0b91677b216676ad53ec2e775b (diff) | |
download | wallabag-e9579d6de9ea99522e5905e8bb827e858c8da1fc.tar.gz wallabag-e9579d6de9ea99522e5905e8bb827e858c8da1fc.tar.zst wallabag-e9579d6de9ea99522e5905e8bb827e858c8da1fc.zip |
Merge pull request #3985 from wallabag/update-composer
Keep composer.lock
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/release.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/release.sh b/scripts/release.sh index ee08a688..e697e220 100755 --- a/scripts/release.sh +++ b/scripts/release.sh | |||
@@ -9,8 +9,8 @@ ENV=$4 | |||
9 | 9 | ||
10 | rm -rf $TMP_FOLDER/$RELEASE_FOLDER | 10 | rm -rf $TMP_FOLDER/$RELEASE_FOLDER |
11 | mkdir $TMP_FOLDER/$RELEASE_FOLDER | 11 | mkdir $TMP_FOLDER/$RELEASE_FOLDER |
12 | git clone git@github.com:wallabag/wallabag.git -b release-$VERSION $TMP_FOLDER/$RELEASE_FOLDER/$VERSION | 12 | git clone git@github.com:wallabag/wallabag.git $TMP_FOLDER/$RELEASE_FOLDER/$VERSION |
13 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && SYMFONY_ENV=$ENV COMPOSER_MEMORY_LIMIT=-1 composer up -n --no-dev | 13 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && SYMFONY_ENV=$ENV COMPOSER_MEMORY_LIMIT=-1 composer install -n --no-dev |
14 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console wallabag:install --env=$ENV -n | 14 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console wallabag:install --env=$ENV -n |
15 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console assets:install --env=$ENV --symlink --relative | 15 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console assets:install --env=$ENV --symlink --relative |
16 | cd $TMP_FOLDER/$RELEASE_FOLDER && tar czf wallabag-$VERSION.tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $VERSION | 16 | cd $TMP_FOLDER/$RELEASE_FOLDER && tar czf wallabag-$VERSION.tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $VERSION |