From a0bfe3184766de863d242cb40feb2fd91ea44ea6 Mon Sep 17 00:00:00 2001 From: James Laska Date: Thu, 4 Dec 2014 12:47:14 -0500 Subject: [PATCH] Another attempt to correct markdown --- docs/release_process.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/release_process.md b/docs/release_process.md index 840b7f4d62..f5248fd8a1 100644 --- a/docs/release_process.md +++ b/docs/release_process.md @@ -11,7 +11,9 @@ successful release. 1. Verify that the `__version__` variable has been updated in `awx/__init__.py`. +``` __version__ = 'X.Y.Z' +``` 2. Update the rpm package changelog by adding a new entry to the file `packaging/rpm/ansible-tower.spec`. @@ -19,14 +21,18 @@ successful release. 4. Tag and push the release to git. +``` git tag git push --tags +``` 5. Create and push a release branch to git. +``` git branch release_ git checkout release_ git push origin release_ +``` Monitor Jenkins ---------------