]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge pull request #2605 from wallabag/update-release-process
authorNicolas LÅ“uillet <nicolas@loeuillet.org>
Sat, 19 Nov 2016 10:57:26 +0000 (11:57 +0100)
committerGitHub <noreply@github.com>
Sat, 19 Nov 2016 10:57:26 +0000 (11:57 +0100)
Add .travis.yml change to RELEASE_PROCESS

RELEASE_PROCESS.md

index 6873be4977cad833f0b2448ddd7211bffcb19ae8..51b9c4d0b34a3e58c96db6501657e7d3489cb959 100644 (file)
@@ -20,7 +20,20 @@ git checkout master
 git pull origin master
 git checkout -b release-$LAST_WALLABAG_RELEASE
 SYMFONY_ENV=prod composer up --no-dev
-git add --force composer.lock
+```
+
+- Update `.travis.yml` file and replace the composer line with this one:
+
+```diff
+script:
+-    - travis_wait bash composer install -o  --no-interaction --no-progress --prefer-dist
++    - travis_wait composer update --no-interaction --no-progress
+```
+
+- Then continue with these commands:
+
+```
+git add --force composer.lock .travis.yml
 git commit -m "Release wallabag $LAST_WALLABAG_RELEASE"
 git push origin release-$LAST_WALLABAG_RELEASE
 ```