X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=RELEASE_PROCESS.md;fp=RELEASE_PROCESS.md;h=51b9c4d0b34a3e58c96db6501657e7d3489cb959;hb=45277ad2bdb072e0ef6c5371aa410db3ba3d158e;hp=6873be4977cad833f0b2448ddd7211bffcb19ae8;hpb=8853914ba4fdc42d9676598e3db79a4d07e3b697;p=github%2Fwallabag%2Fwallabag.git 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 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 ```