Skip to content

Commit 07a28a5

Browse files
committed
Finish configuration for publishing to Central
1 parent 8a03ac7 commit 07a28a5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on:
44
push:
55
tags:
66
- 'v*'
7+
78
env:
8-
# TODO: required to use the in-memory PGP key.
9-
# See https://github.com/vanniktech/gradle-maven-publish-plugin/issues/253#issuecomment-841637159
10-
# ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.PGP_KEY_ID }}
9+
# See https://vanniktech.github.io/gradle-maven-publish-plugin/central for the list of required properties
10+
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ vars.PGP_KEY_ID }}
1111
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.PGP_SEC }}
1212
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.PGP_PASSWORD }}
13-
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USER }}
14-
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD }}
13+
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.CENTRAL_PORTAL_USER }}
14+
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.CENTRAL_PORTAL_PASSWORD }}
1515

1616
jobs:
1717
release:

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ mavenPublishing {
157157
developer {
158158
id.set("petertrr")
159159
name.set("Petr Trifanov")
160-
email.set("peter.trifanov@mail.ru")
160+
email.set("peter.trifanov@gmail.com")
161161
}
162162
}
163163

0 commit comments

Comments
 (0)