Update release process docs

This commit is contained in:
James Laska
2015-06-12 09:00:53 -04:00
parent 3b7b930bcd
commit 2424ed4832
2 changed files with 13 additions and 7 deletions

View File

@@ -15,18 +15,20 @@ successful release.
__version__ = 'X.Y.Z'
```
2. Update the rpm package changelog by adding a new entry to the file `packaging/rpm/ansible-tower.spec`.
2. Update the "Release History" in the file `README.md`.
3. Update the debian package changelog by adding a new entry to the file `packaging/debian/changelog`.
3. Update the rpm package changelog by adding a new entry to the file `packaging/rpm/ansible-tower.spec`.
4. Tag and push the release to git.
4. Update the debian package changelog by adding a new entry to the file `packaging/debian/changelog`.
5. Tag and push the release to git.
```
git tag <X.Y.Z>
git push --tags
```
5. Create and push a release branch to git.
6. Create and push a release branch to git.
```
git branch release_<X.Y.Z>