Skip to content

Commit 11d69ea

Browse files
committed
Re-enable publishing to prepare 0.1.0 release
1 parent efff14e commit 11d69ea

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@ jobs:
1515
- name: Build with Gradle
1616
run: ./gradlew build
1717
- name: Publish
18-
if: ${{ false }}
19-
# if: ${{ github.ref == 'refs/heads/main' || startswith(github.ref, 'refs/tags/') }}
18+
if: ${{ github.ref == 'refs/heads/main' || startswith(github.ref, 'refs/tags/') }}
2019
env:
2120
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.MAVEN_CENTRAL_GPG_KEY }}
2221
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.MAVEN_CENTRAL_GPG_PASSWORD }}
23-
ORG_GRADLE_PROJECT_sonatype_username: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
24-
ORG_GRADLE_PROJECT_sonatype_password: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
22+
ORG_GRADLE_PROJECT_sonatype_username: ${{ secrets.SONATYPE_USERNAME }}
23+
ORG_GRADLE_PROJECT_sonatype_password: ${{ secrets.SONATYPE_PASSWORD }}
2524
run: ./gradlew publish -PsigningKeyId=CDE3528F

gradle/publish.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ publishing {
99

1010
all {
1111
pom {
12-
url = 'https://github.com/xenit-eu/opa-async-java-client'
13-
name = "opa-async-java-client"
12+
url = 'https://github.com/content-cloud/opa-java-client'
13+
name = "opa-java-client"
1414
description = project.description
1515

1616
scm {
17-
connection = 'scm:git:[email protected]:xenit-eu/opa-async-java-client.git'
18-
developerConnection = 'scm:git:[email protected]:xenit-eu/opa-async-java-client.git'
19-
url = 'https://github.com/xenit-eu/opa-async-java-client.git'
17+
connection = 'scm:git:[email protected]:content-cloud/opa-java-client.git'
18+
developerConnection = 'scm:git:[email protected]:content-cloud/opa-java-client.git'
19+
url = 'https://github.com/content-cloud/opa-java-client.git'
2020
}
2121

2222
developers {

0 commit comments

Comments
 (0)