Release #9
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
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
# Copyright The original authors | |
# | |
# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
name: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Release version' | |
required: true | |
next: | |
description: 'Next version' | |
required: false | |
env: | |
JAVA_VERSION: '11' | |
JAVA_DISTRO: 'temurin' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ env.JAVA_VERSION }} | |
distribution: ${{ env.JAVA_DISTRO }} | |
cache: maven | |
- name: Set release version | |
id: version | |
run: | | |
BRANCH="oss-quickstart-${{ github.event.inputs.version }}" | |
RELEASE_VERSION=${{ github.event.inputs.version }} | |
NEXT_VERSION=${{ github.event.inputs.next }} | |
PLAIN_VERSION=`echo ${RELEASE_VERSION} | awk 'match($0, /^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)/) { print substr($0, RSTART, RLENGTH); }'` | |
COMPUTED_NEXT_VERSION="${PLAIN_VERSION}-SNAPSHOT" | |
if [ -z $NEXT_VERSION ] | |
then | |
NEXT_VERSION=$COMPUTED_NEXT_VERSION | |
fi | |
git checkout -b $BRANCH | |
./mvnw -ntp -B versions:set versions:commit -DnewVersion=$RELEASE_VERSION | |
git config --global user.email "[email protected]" | |
git config --global user.name "moditect-release-bot" | |
git commit -a -m "Releasing version $RELEASE_VERSION" | |
git push origin $BRANCH | |
echo "BRANCH=$BRANCH" >> $GITHUB_ENV | |
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV | |
echo "NEXT_VERSION=$NEXT_VERSION" >> $GITHUB_ENV | |
echo "PLAIN_VERSION=$PLAIN_VERSION" >> $GITHUB_ENV | |
- name: Stage | |
run: | | |
export GPG_TTY=$(tty) | |
./mvnw -ntp -B --file pom.xml \ | |
-Drepository.url=https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git \ | |
-Dmaven.site.skip=true -Drelease=true -Ppublication,stage | |
- name: Release | |
env: | |
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
JRELEASER_BRANCH: ${{ env.BRANCH }} | |
JRELEASER_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }} | |
JRELEASER_GPG_SECRET_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
JRELEASER_NEXUS2_MAVEN_CENTRAL_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
JRELEASER_NEXUS2_MAVEN_CENTRAL_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
run: | | |
./mvnw -ntp -B --file pom.xml -Pjreleaser jreleaser:release | |
- name: JReleaser output | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jreleaser-release | |
path: | | |
parent/target/jreleaser/trace.log | |
parent/target/jreleaser/output.properties | |
- name: Set next version | |
run: | | |
./mvnw -ntp -B versions:set versions:commit -DnewVersion=${{ env.NEXT_VERSION }} | |
git config --global user.email "[email protected]" | |
git config --global user.name "moditect-release-bot" | |
git commit -a -m "Next version ${{ env.NEXT_VERSION }}" | |
git push origin ${{ env.BRANCH }} |