]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Update RELEASE_PROCESS.md
authorJeremy Benoist <j0k3r@users.noreply.github.com>
Mon, 10 Oct 2016 07:12:24 +0000 (09:12 +0200)
committerGitHub <noreply@github.com>
Mon, 10 Oct 2016 07:12:24 +0000 (09:12 +0200)
RELEASE_PROCESS.md

index 79e3a40e3d26b841e3c3b50b979940fe7bc9685d..627bd844caf619e6dbdf5e86d1b61df7b66b228f 100644 (file)
@@ -15,23 +15,23 @@ 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`) :
 
-```
   cd releaser/
   ./releaser.sh $LAST_WALLABAG_RELEASE
-```
+ ```
+ cd releaser/
+ ./releaser.sh $LAST_WALLABAG_RELEASE
+ ```
 
 - [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**).