[maven-release-plugin] prepare for next development iteration #93
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yamllint --format github .github/workflows/deploy.yml | |
--- | |
name: deploy | |
# We deploy on master and release versions, regardless of if the commit is | |
# documentation-only or not. | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- master | |
# Don't deploy tags because the same commit for MAJOR.MINOR.PATCH is also | |
# on master: Redundant deployment of a release version will fail uploading. | |
tags-ignore: | |
- '*' | |
jobs: | |
deploy: | |
name: deploy (${{ matrix.name }}) | |
runs-on: ubuntu-22.04 # newest available distribution, aka jellyfish | |
strategy: | |
fail-fast: false # don't fail fast as we can re-run one job that failed | |
matrix: | |
include: | |
- name: jars | |
deploy_script: build-bin/deploy | |
# Deploy the Bill of Materials (BOM) separately as it is unhooked | |
# from the main project intentionally. | |
- name: bom | |
deploy_script: build-bin/deploy_bom | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' # zulu as it supports a wide version range | |
java-version: '11' # last that can compile the 1.6 release profile | |
- name: Cache local Maven repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-jdk-11-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-jdk-11-maven- | |
- name: Deploy | |
env: | |
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} | |
# GPG_PASSPHRASE=<passphrase for GPG_SIGNING_KEY> | |
# * referenced in .settings.xml | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
# SONATYPE_USER=<sonatype account token> | |
# * deploys snapshots and releases to Sonatype | |
# * needs access to io.zipkin via OSSRH-16669 | |
# * generate via https://oss.sonatype.org/#profile;User%20Token | |
# * referenced in .settings.xml | |
SONATYPE_USER: ${{ secrets.SONATYPE_USER }} | |
# SONATYPE_PASSWORD=<password to sonatype account token> | |
# * referenced in .settings.xml | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
run: | # GITHUB_REF = refs/heads/master or refs/tags/MAJOR.MINOR.PATCH | |
build-bin/configure_deploy && | |
${{ matrix.deploy_script }} $(echo ${GITHUB_REF} | cut -d/ -f 3) |