Release SDK to Maven Central #14
Workflow file for this run
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
name: Release SDK to Maven Central | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: | | |
The version to release. | |
Add -SNAPSHOT to release a snapshot version. | |
required: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
server-id: oss-sonatype | |
server-username: SONATYPE_USERNAME | |
server-password: SONATYPE_PASSWORD | |
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
gpg-passphrase: GPG_PASSPHRASE | |
settings-path: ${{ github.workspace }} | |
- name: Prepare Environment and Version | |
id: prepare | |
run: | | |
git config user.name s-github-actions | |
git config user.email [email protected] | |
echo "branch_name=release/${{ inputs.version }}" >> $GITHUB_OUTPUT | |
- name: Prepare Release | |
id: prepare_release | |
run: | | |
cd code | |
chmod a+x ../gradlew && ../gradlew --no-daemon versionsSet -Pversion=${{ inputs.version }} | |
- name: Create PR | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
branch: "publish-v${{ inputs.version }}" | |
commit-message: "chore: prepare release ${{ inputs.version }}" | |
title: "chore: Publish v${{ inputs.version }}" | |
body: | | |
This PR updates the version of the SDK to v`${{ inputs.version }}`. | |
Generated by the EG SDK generator. | |
add-paths: | | |
code/* | |
- name: Build and Publish | |
env: | |
ARTYLAB_USER: ${{ secrets.SONATYPE_USERNAME }} | |
ARTYLAB_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }} | |
run: | | |
echo "Publishing version ${{ inputs.version }}" | |
cd code | |
../gradlew --no-daemon clean jar build publish -Pversion=${{ inputs.version }} |