keycloak-scim/misc/ReleaseProcess.md

69 lines
1.8 KiB
Markdown
Raw Normal View History

2015-04-14 08:30:58 +00:00
## Test
* Make sure tests pass on Travis
* Make sure tests pass on Jenkins
* Go through the (manual testing)[https://docs.google.com/spreadsheets/d/17C_WEHNE03r5DxN71OXGJaytjA6_WjZKCXRcsnmNQD4]
## Create release
* Get from github
```
$ git@github.com:keycloak/keycloak.git
```
* Build everything to make sure its kosher.
```
$ cd keycloak
2015-04-23 12:20:33 +00:00
$ mvn -Pjboss-release install
2015-04-14 08:30:58 +00:00
```
* Upload to Nexus (from project root)
```
2015-04-23 12:20:33 +00:00
$ mvn -Pjboss-release deploy
2015-04-14 08:30:58 +00:00
```
* Login to Nexus and release the maven repository uploads in the staging area.
* Upload src and distro zips to sf.net/projects/keycloak. This includes appliance, war-dist, each adapter, and proxy distros. You need to create an adapters folder on sf.net and each uploaded adapter there.
2015-05-20 05:10:53 +00:00
* Upload documentation to http://keycloak.github.io/
2015-04-14 08:30:58 +00:00
```
2015-05-20 05:10:53 +00:00
$ git clone https://github.com/keycloak/keycloak.github.io.git
$ cd keycloak.github.io.git/docs
$ rm -rf *
$ unzip distribution/docs-dist/target/keycloak-docs-1.0.0.Final.zip
$ git add --all
$ git commit
$ git push
2015-04-14 08:30:58 +00:00
```
* tag release
```
$ git tag -a -m "1.0.0.Final" 1.0.0.Final
$ git push --tags
```
## Update Bower
```
$ git clone https://github.com/keycloak/keycloak-js-bower
$ cp <keycloak.js from dist> dist/keycloak-js-bower
$ cp <keycloak.min.js from dist> dist/keycloak-js-bower
```
Edit bower.json and set version (include -beta -rc, but not -final). Create tag.
## Update OpenShift Cartridge
See https://github.com/keycloak/openshift-keycloak-cartridge for details
## Update Docker image
Instructions TBD
## Maven central
Releases are automatically synced to Maven central, but this can take up to one day
## Announce
* Update Magnolia site to link keycloak docs and announcements.
2015-04-23 12:20:33 +00:00
* Write a blog and email about release including links to download, migration guide, docs, and blurb about what's new