aboutsummaryrefslogtreecommitdiffhomepage
path: root/RELEASE_PROCESS.md
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-11-19 11:43:47 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-11-19 11:43:47 +0100
commit45277ad2bdb072e0ef6c5371aa410db3ba3d158e (patch)
treef2f37d6cddb5e06f1fb2474e91480e7318419b8d /RELEASE_PROCESS.md
parent8853914ba4fdc42d9676598e3db79a4d07e3b697 (diff)
downloadwallabag-45277ad2bdb072e0ef6c5371aa410db3ba3d158e.tar.gz
wallabag-45277ad2bdb072e0ef6c5371aa410db3ba3d158e.tar.zst
wallabag-45277ad2bdb072e0ef6c5371aa410db3ba3d158e.zip
Add .travis.yml change to RELEASE_PROCESS
Diffstat (limited to 'RELEASE_PROCESS.md')
-rw-r--r--RELEASE_PROCESS.md15
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
20git pull origin master 20git pull origin master
21git checkout -b release-$LAST_WALLABAG_RELEASE 21git checkout -b release-$LAST_WALLABAG_RELEASE
22SYMFONY_ENV=prod composer up --no-dev 22SYMFONY_ENV=prod composer up --no-dev
23git add --force composer.lock 23```
24
25- Update `.travis.yml` file and replace the composer line with this one:
26
27```diff
28script:
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```
36git add --force composer.lock .travis.yml
24git commit -m "Release wallabag $LAST_WALLABAG_RELEASE" 37git commit -m "Release wallabag $LAST_WALLABAG_RELEASE"
25git push origin release-$LAST_WALLABAG_RELEASE 38git push origin release-$LAST_WALLABAG_RELEASE
26``` 39```