Skip to content

Merge pull request #9 from PAYONE-GmbH/feature/publishing_to_maven #27

Merge pull request #9 from PAYONE-GmbH/feature/publishing_to_maven

Merge pull request #9 from PAYONE-GmbH/feature/publishing_to_maven #27

Workflow file for this run

name: Publish Android Library to Maven Central
on:
push:
branches:
- main # Trigger on push to the main branch
workflow_dispatch: # Allows manual triggering from the Actions tab
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
- name: Cache Gradle dependencies
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle
- name: Build Android library
run: ./gradlew :pcp-client-android-sdk:build
- name: Publish to Maven Central
run: ./gradlew :pcp-client-android-sdk:publishAndReleaseToMavenCentral --no-configuration-cache
env:
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ORG_GRADLE_PROJECT_signingInMemoryKey }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.ORG_GRADLE_PROJECT_signingInMemoryKeyPassword }}
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.ORG_GRADLE_PROJECT_mavenCentralUsername }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.ORG_GRADLE_PROJECT_mavenCentralPassword }}
- name: Notify success
if: success()
run: echo "Published Android library to Maven Central successfully!"
- name: Notify failure
if: failure()
run: echo "Publishing Android library to Maven Central failed!"