Deploy to central #4
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
# gh secret set ORG_GRADLE_PROJECT_mavenCentralUsername -a actions --body "<your maven central account username>" | |
# gh secret set ORG_GRADLE_PROJECT_mavenCentralPassword -a actions --body "<your maven central password>" | |
# gh secret set ORG_GRADLE_PROJECT_signingInMemoryKey -a actions --body "$(gpg --export-secret-keys --armor "<key id>" | grep -v '\-\-' | grep -v '^=.' | tr -d '\n')" | |
# gh secret set ORG_GRADLE_PROJECT_signingInMemoryKeyId -a actions --body "<your key id>" | |
# gh secret set ORG_GRADLE_PROJECT_signingInMemoryKeyPassword -a actions --body "<your key password>" | |
name: Deploy to central | |
on: workflow_dispatch | |
permissions: | |
contents: read | |
jobs: | |
build: | |
uses: ./.github/workflows/gradle.yml | |
deploy: | |
needs: build | |
strategy: | |
matrix: | |
include: | |
# - target: publishIosArm64PublicationToMavenCentral | |
# os: macos-latest | |
- target: publishAndroidReleasePublicationToMavenCentral | |
os: ubuntu-latest | |
- target: publishJvmPublicationToMavenCentral | |
os: ubuntu-latest | |
# - target: publishLinuxX64PublicationToMavenCentral | |
# os: ubuntu-latest | |
- target: publishKotlinMultiplatformPublicationToMavenCentral | |
os: ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@v3 | |
# - uses: actions/cache@v3 | |
# with: | |
# path: | | |
# ~/.konan | |
# key: ${{ runner.os }}-${{ hashFiles('**/.lock') }} | |
- name: Import GPG key | |
uses: crazy-max/ghaction-import-gpg@v5 | |
with: | |
gpg_private_key: ${{ secrets.OSSRH_GPG_SECRET_KEY }} | |
passphrase: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Gradle publish | |
uses: gradle/gradle-build-action@ce999babab2de1c4b649dc15f0ee67e6246c994f | |
with: | |
arguments: | | |
${{ matrix.target }} --no-configuration-cache | |
closeSonatypeStagingRepository | |
-Psigning.gnupg.passphrase='${{secrets.OSSRH_GPG_SECRET_KEY_PASSWORD}}' | |
-Psigning.gnupg.keyName='${{secrets.OSSRH_GPG_SECRET_KEY_ID}}' | |
-PsonatypeUsername='${{secrets.OSSRH_USERNAME}}' | |
-PsonatypePassword='${{secrets.OSSRH_PASSWORD}}' | |
# Add `releaseSonatypeStagingRepository` here to release |