aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-19 11:57:26 +0100
committerGitHub <noreply@github.com>2016-11-19 11:57:26 +0100
commiteabcd880ca543d0d6ac7f994c6f8ecddb557ab54 (patch)
treeec50eb90fdecae0cbeedb7c53411b04921d2ef05
parenta2261fbd7065ee3bfb2ea1e790dbba4d6f692663 (diff)
parent45277ad2bdb072e0ef6c5371aa410db3ba3d158e (diff)
downloadwallabag-eabcd880ca543d0d6ac7f994c6f8ecddb557ab54.tar.gz
wallabag-eabcd880ca543d0d6ac7f994c6f8ecddb557ab54.tar.zst
wallabag-eabcd880ca543d0d6ac7f994c6f8ecddb557ab54.zip
Merge pull request #2605 from wallabag/update-release-process
Add .travis.yml change to RELEASE_PROCESS
-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```