-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Java] Explore maven publishing, sonatype and alternatives (#209)
* Update gradle.properties * Create publishing.yml * Update gradle.properties * Update publishing.yml * Update publishing.yml
- Loading branch information
1 parent
33ae1ef
commit 12a0949
Showing
2 changed files
with
37 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Publish the Java SDK | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
deploy: | ||
description: 'Deploy?' | ||
required: true | ||
type: boolean | ||
jobs: | ||
build: | ||
name: Build and Test | ||
if: ${{ inputs.deploy }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
distribution: 'corretto' | ||
|
||
- name: Build and Test with Gradle | ||
run: ./gradlew build | ||
|
||
- name: Publish SDK Library to Maven Central | ||
run: ./gradlew publishAllPublicationsToMavenCentralRepository --no-configuration-cache | ||
env: | ||
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_USERNAME }} | ||
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_PASSWORD }} | ||
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_KEY }} | ||
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.GPG_KEY_ID }} | ||
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.GPG_KEY_PASSWORD }} |
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