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 ---------------