X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=RELEASE_PROCESS.md;fp=RELEASE_PROCESS.md;h=767f5e2601e003bfc773322f041af096f59597bd;hb=7c1225347db8b516cc268709939f6b359bc283c1;hp=627bd844caf619e6dbdf5e86d1b61df7b66b228f;hpb=84e3c36e02e4ffb4611f6e1eca37c97a0ffb4660;p=github%2Fwallabag%2Fwallabag.git diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index 627bd844..767f5e26 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md @@ -15,23 +15,22 @@ During this documentation, we assume the release is `$LAST_WALLABAG_RELEASE`. - Run these commands to create the tag: - ``` - 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 - git commit -m "Release wallabag $LAST_WALLABAG_RELEASE" - git push origin release-$LAST_WALLABAG_RELEASE - ``` +``` +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 +git commit -m "Release wallabag $LAST_WALLABAG_RELEASE" +git push origin release-$LAST_WALLABAG_RELEASE +``` - Create a new pull request with this title `DON'T MERGE Release wallabag $LAST_WALLABAG_RELEASE`. This pull request is used to launch builds on Travis-CI. -- Run these commands to create the package (you need to clone `https://github.com/wallabag/releaser`) : +- Run these command to create the package: - ``` - cd releaser/ - ./releaser.sh $LAST_WALLABAG_RELEASE - ``` +``` +make releas emaster /tmp wllbg-release prod +``` - [Create the new release on GitHub](https://github.com/wallabag/wallabag/releases/new). You have to upload on this page the package. - Delete the `release-$LAST_WALLABAG_RELEASE` branch and close the pull request (**DO NOT MERGE IT**).