- Bump version
Environment.java
(This should ideally pickup from pom.xml dynamically)pom.xml
- version & scm > tag
- commit with following git message
:bookmark: tag
- Draft a new release and publish
- Github actions should automatically release the jar to Maven.
- Import private GPG key present in 1pass
- find the imported key
gpg --list-secret-keys
- update GPG key expiry date if required
- copy GPG key so it can be pasted on Github as
MAVEN_GPG_PRIVATE_KEY
gpg --export-secret-keys -a <> | pbcopy
- update
MAVEN_GPG_PASSPHRASE
if required on Github (generally this doesn't change)
Only do if required.
- One-time setup:
- Install GPG and import the private signing key.
- Create a local file
~/.m2/settings.xml
containing our OSSRH credentials. - If you have 2-factor auth on your GitHub account, make sure you have a GitHub personal access token for authenticating on the command line over HTTPS.
- Run
./release.sh
. - Follow the prompts to set new versions and tags. The Maven release process will make tag and release commits to GitHub on your behalf. You will also be prompted for the GPG key passphrase, and for
- Verify that your new release has been successfully uploaded at https://oss.sonatype.org/content/repositories/releases/io/percy/
- Verify the release tags on GitHub: https://github.com/percy/percy-java-selenium/releases
For more details on the steps above, and for instructions on more manual release that allows you to inspect contents before promoting your staged release, see the sections below.
- To make a release
- Requirements
- Making a full release from the command line
- Making a new deployment, inspecting and releasing manually in the Nexus Registry
- Creating a development release (aka 'snapshot')
- Troubleshooting and more resources
Maven will rely on your local GPG installation for signing the release. To install GPG on a Mac:
$ brew install gpg
You can also download installers from http://www.gnupg.org/download/ .
Download the private key from 1password. It is a file attached to the secure note titled "Java release private key".
Import the key into your local gpg keyring:
$ gpg --import secret-percy-release-key.asc
It will prompt you for the key passphrase, which you can also find in 1password. Search for "Java release private key".
Create a local settings.xml
file, placed in ~/.m2/settings.xml
, which will contain the credentials to upload artifacts to OSSRH. The minimal contents of the file should be as follows:
<settings>
<servers>
<server>
<!-- this server id has to match the id used in the repository section of our pom.xml -->
<id>ossrh</id>
<username>OSSRH_USERNAME</username>
<password>OSSRH_TOKEN</password>
</server>
</servers>
</settings>
The username and token can be generated from https://oss.sonatype.org. Log in with the percy-io credentials, then go to the top right menu (appears clicking on your username) > Profile > select "User token" from the dropdown that also has a "Summary" section. Hit "Access User Token" to get the OSSRH_USERNAME
and OSSRH_TOKEN
to use in this file. The token can also be regenerated from this UI, should that ever be necessary.
For detailed documentation on the format of settings.xml
, see: http://maven.apache.org/ref/3.6.0/maven-settings/settings.html
The release process will commit and push to GitHub updated version numbers and tags. For this, it will require your GitHub username and password. If you have two-factor authentication on your GitHub account, you will need to get a personal access token from GitHub, and use that instead of your password when prompted during the release process.
To create a GitHub personal access token, follow the instructions here: https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/
To perform a new automated release, updating versions and tags:
$ ./release.sh
Follow the prompts to provide new version numbers and tags.
To make a new release, edit the version number in pom.xml to be the version number that you want, then run:
$ export GPG_TTY=$(tty) && mvn clean deploy
This will create a release candidate, and upload it to the staging servers for Maven Central.
Log into Sonatype's Nexus Repository Manager to "close" your staging repository and then release it. The instructions on how to do so are here: https://central.sonatype.org/pages/releasing-the-deployment.html
Set the version number in the POM to something ending in -SNAPSHOT
and then run mvn deploy
. This will create the corresponding development snapshot version and upload it to the snapshots repository.
Since this is a development release, there is no need to "promote" the release or follow any additional steps. The package will be available for download from the snaphosts repository. You can check the pom.xml or the output of mvn deploy
for the public URL to the repository, from which the JARs and other artifacts can be downloaded.
This can be useful for testing JARs without doing a full release.
If something is not quite right, you can re-run any mvn
command with the -X
switch to see detailed debug logs and stack traces.
The private key has an expiry date. When it expires, it can be either extended, or a new key-pair can be created.
If the secret key or passphrase gets lost, a new keypair can be created and the new public key distributed.
Detailed instructions on creating a new keypair or extending the validity of an expired key can be found here: https://central.sonatype.org/pages/working-with-pgp-signatures.html
Should it be necessary, the private key's revocation certificate can also be found in 1password (search for "Java release private key").
The full instructions for releasing artifacts to Maven Central can be found here: https://central.sonatype.org/pages/ossrh-guide.html