We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb1ff3b commit 1251969Copy full SHA for 1251969
.github/workflows/release.yaml
@@ -18,6 +18,9 @@ jobs:
18
with:
19
distribution: 'zulu'
20
java-version: 19
21
-
22
- # TODO:
23
- #- run: ./gradlew build publish
+ - name: Build and publish artifacts
+ env:
+ ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
24
+ ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
25
+ ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
26
+ run: ./gradlew build publish
0 commit comments