Update gradleMavenPublish to v0.30.0 #203
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: CI | |
on: | |
push: | |
pull_request: | |
env: | |
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME }} | |
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD }} | |
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.PGP_SECRET }} | |
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.PGP_KEY_ID }} | |
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.PGP_PASSPHRASE }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
with: | |
fetch-depth: 0 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 # v1 | |
- name: Download Java JDK | |
uses: typelevel/download-java@817e8c0d48dc2e88e155a8e4f69ba493bef621be # v2 | |
id: download-java | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Setup Java JDK | |
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3 | |
with: | |
distribution: jdkfile | |
java-version: 11 | |
jdkFile: ${{ steps.download-java.outputs.jdkFile }} | |
- name: Build & Test | |
uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2 | |
with: | |
arguments: build --info | |
- name: Publish To Sonatype | |
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main') | |
uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2 | |
with: | |
arguments: publishAllPublicationsToMavenCentral |