Skip to content
Mikhail Vyshegorodtsev edited this page May 22, 2017 · 1 revision

Prepare the repo

Merge all changes you about to release into the master branch.

git checkout master
git merge develop --no-ff

Bump the release version of CLI_VERSION in lib/uaa/cli/version.rb Make a commit with the new version and push the changes.

2Uaa team: use git ci instead.

git add lib/uaa/cli/version.rb
git commit -m"Bump version to SOMEVERSION
git push

Build and publish the gem

cd into cf-uaac directory and create a gem file:

gem build cf-uaac.gemspec
gem push cf-uaac-SOMEVERSION

Create a tag and a release notes

In releases page click Draft new release and specify new tag name and release notes.

Clone this wiki locally