diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-11-19 11:43:47 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-11-19 11:43:47 +0100 |
commit | 45277ad2bdb072e0ef6c5371aa410db3ba3d158e (patch) | |
tree | f2f37d6cddb5e06f1fb2474e91480e7318419b8d | |
parent | 8853914ba4fdc42d9676598e3db79a4d07e3b697 (diff) | |
download | wallabag-45277ad2bdb072e0ef6c5371aa410db3ba3d158e.tar.gz wallabag-45277ad2bdb072e0ef6c5371aa410db3ba3d158e.tar.zst wallabag-45277ad2bdb072e0ef6c5371aa410db3ba3d158e.zip |
Add .travis.yml change to RELEASE_PROCESS
-rw-r--r-- | RELEASE_PROCESS.md | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index 6873be49..51b9c4d0 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md | |||
@@ -20,7 +20,20 @@ git checkout master | |||
20 | git pull origin master | 20 | git pull origin master |
21 | git checkout -b release-$LAST_WALLABAG_RELEASE | 21 | git checkout -b release-$LAST_WALLABAG_RELEASE |
22 | SYMFONY_ENV=prod composer up --no-dev | 22 | SYMFONY_ENV=prod composer up --no-dev |
23 | git add --force composer.lock | 23 | ``` |
24 | |||
25 | - Update `.travis.yml` file and replace the composer line with this one: | ||
26 | |||
27 | ```diff | ||
28 | script: | ||
29 | - - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist | ||
30 | + - travis_wait composer update --no-interaction --no-progress | ||
31 | ``` | ||
32 | |||
33 | - Then continue with these commands: | ||
34 | |||
35 | ``` | ||
36 | git add --force composer.lock .travis.yml | ||
24 | git commit -m "Release wallabag $LAST_WALLABAG_RELEASE" | 37 | git commit -m "Release wallabag $LAST_WALLABAG_RELEASE" |
25 | git push origin release-$LAST_WALLABAG_RELEASE | 38 | git push origin release-$LAST_WALLABAG_RELEASE |
26 | ``` | 39 | ``` |