4.1.0 #41
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: Publish to Maven Central | |
# Run this workflow when a release is created | |
on: | |
release: | |
types: [released] | |
jobs: | |
publish: | |
name: Release build and publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
# Base64 decodes and pipes the GPG key content into the secret file | |
- name: Prepare environment | |
env: | |
GPG_KEY_CONTENTS: ${{ secrets.GPG_KEY_CONTENTS }} | |
SIGNING_SECRET_KEY_RING_FILE: ${{ secrets.SIGNING_SECRET_KEY_RING_FILE }} | |
run: | | |
git fetch --unshallow | |
sudo bash -c "echo '$GPG_KEY_CONTENTS' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'" | |
chmod +x ./gradlew | |
# Builds the artifacts of the library | |
- name: Build Release Artifacts | |
run: ./gradlew assemble | |
env: | |
SDK_VERSION: ${{ github.event.release.tag_name }} | |
# Runs upload, and then closes & releases the repository | |
- name: Publish Release Version to MavenCentral | |
run: | | |
if ${{ endswith(github.event.release.tag_name, '-SNAPSHOT') }}; then | |
echo "Publising Snapshot Version ${{ github.event.release.tag_name}} to Snapshot repository" | |
./gradlew publishToSonatype | |
else | |
echo "Publising Release Version ${{ github.event.release.tag_name}} to Staging repository" | |
./gradlew publishToSonatype --max-workers 1 closeAndReleaseSonatypeStagingRepository | |
fi | |
env: | |
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} | |
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} | |
SIGNING_SECRET_KEY_RING_FILE: ${{ secrets.SIGNING_SECRET_KEY_RING_FILE }} | |
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }} | |
SDK_VERSION: ${{ github.event.release.tag_name }} |