diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-11-19 11:57:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-19 11:57:26 +0100 |
commit | eabcd880ca543d0d6ac7f994c6f8ecddb557ab54 (patch) | |
tree | ec50eb90fdecae0cbeedb7c53411b04921d2ef05 /RELEASE_PROCESS.md | |
parent | a2261fbd7065ee3bfb2ea1e790dbba4d6f692663 (diff) | |
parent | 45277ad2bdb072e0ef6c5371aa410db3ba3d158e (diff) | |
download | wallabag-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
Diffstat (limited to 'RELEASE_PROCESS.md')
-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 | ``` |