80 lines
2 KiB
Markdown
80 lines
2 KiB
Markdown
|
## 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
|
||
|
$ mvn install
|
||
|
```
|
||
|
|
||
|
* Build javadoc and jaxrs-doc
|
||
|
```
|
||
|
$ mvn javadoc:javadoc
|
||
|
# This is for jaxrs-docs
|
||
|
$ cd services
|
||
|
$ mvn package
|
||
|
# back to root keycloak dir
|
||
|
$ cd ..
|
||
|
```
|
||
|
|
||
|
* Upload to Nexus (from project root)
|
||
|
```
|
||
|
$ mvn -Pdistribution deploy
|
||
|
```
|
||
|
|
||
|
* 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.
|
||
|
|
||
|
* Upload documentation to docs.jboss.org
|
||
|
```
|
||
|
$ sftp keycloak@filemgmt.jboss.org
|
||
|
> cd docs_htdocs/keycloak/docs
|
||
|
> mkdir 1.0.0.Final (or whatever version)
|
||
|
> quit
|
||
|
|
||
|
$ unzip distribution/examples-docs-zip/target/keycloak-examples-docs-dist.zip
|
||
|
$ cd docs
|
||
|
$ rsync -rv --protocol=28 * keycloak@filemgmt.jboss.org:/docs_htdocs/keycloak/docs/1.0.0.Final
|
||
|
```
|
||
|
|
||
|
* 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.
|
||
|
* Write a blog and email about release including links to download, migration guide, docs, and blurb about what's new
|