Skip to content

Commit

Permalink
Added GitHub Actions publishing to MavenCentral
Browse files Browse the repository at this point in the history
  • Loading branch information
UweKubosch committed Jan 10, 2023
1 parent 897cf41 commit c1bb86b
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Publish to Maven Central

on:
release:
types: [created]

jobs:
publish:
name: Publish Release Artifacts
runs-on: ubuntu-latest

steps:
# Step 1
# This is optional and only if you want to set the timezone
- name: Setup timezone
run: |
sudo timedatectl set-timezone Europe/Oslo
timedatectl
# Step 2
# Reguired step
- name: Check out the repo
uses: actions/checkout@v3

# Step 3
# Optional step
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1

# Step 4
# Reguired step
- name: Set up Java 17 JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 17
architecture: x64
cache: 'gradle'
check-latest: true

# Step 5
# Optional step, but recommended as user often commit the gradle wrapper jar without exevute permissions.
- name: Change wrapper permissions
run: chmod +x ./gradlew

# Step 6
# Reguired step
- name: Decode GPG Key
run: |
mkdir -p ~/.gradle/
echo "${{secrets.OSSRH_GPG_SECRET_KEY}}" > ~/.gradle/secring.gpg.b64
base64 -d ~/.gradle/secring.gpg.b64 > ~/.gradle/secring.gpg
# Step 7
# Obviously reguired step
- name: Publish package
# wraped the signing.password with single quotes as the password could contain special characters
run: ./gradlew publish -Psigning.keyId=${{secrets.OSSRH_GPG_SECRET_KEY_ID}} -Psigning.password='${{secrets.OSSRH_GPG_SECRET_KEY_PASSWORD}}' -Psigning.secretKeyRingFile=$(echo ~/.gradle/secring.gpg) --warn --stacktrace
env:
OSSRH_USERNAME: ${{secrets.OSSRH_USERNAME}}
OSSRH_PASSWORD: ${{secrets.OSSRH_PASSWORD}}

# Step 8
# Optional step, will enable you to see what you have released as well here on GitHub
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: release-build-libs
path: build/libs
retention-days: 3

0 comments on commit c1bb86b

Please sign in to comment.