Skip to content

Commit 3164c77

Browse files
committed
+signing
1 parent 09bceab commit 3164c77

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

.github/workflows/release-snapshot.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ on:
2323
required: true
2424
maven_central_password:
2525
required: true
26+
maven_central_signing_key_id:
27+
required: true
28+
maven_central_signing_key:
29+
required: true
30+
maven_central_signing_passphrase:
31+
required: true
2632

2733
jobs:
2834
release-snapshot:
@@ -61,4 +67,7 @@ jobs:
6167
SONATYPE_USERNAME: ${{ secrets.sonatype_username }}
6268
SONATYPE_PASSWORD: ${{ secrets.sonatype_password }}
6369
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.maven_central_username }}
64-
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.maven_central_password }}
70+
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.maven_central_password }}
71+
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.maven_central_signing_key_id }}
72+
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.maven_central_signing_key }}
73+
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.maven_central_signing_passphrase }}

.github/workflows/workflow-branch.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,7 @@ jobs:
4343
sonatype_username: ${{ secrets.SONATYPE_USERNAME }}
4444
sonatype_password: ${{ secrets.SONATYPE_PASSWORD }}
4545
maven_central_username: ${{ secrets.ORG_GRADLE_PROJECT_mavenCentralUsername }}
46-
maven_central_password: ${{ secrets.ORG_GRADLE_PROJECT_mavenCentralPassword}}
46+
maven_central_password: ${{ secrets.ORG_GRADLE_PROJECT_mavenCentralPassword}}
47+
maven_central_signing_key_id: ${{ secrets.ORG_GRADLE_PROJECT_signingInMemoryKeyId }}
48+
maven_central_signing_key: ${{ secrets.ORG_GRADLE_PROJECT_signingInMemoryKey }}
49+
maven_central_signing_passphrase: ${{ secrets.ORG_GRADLE_PROJECT_signingInMemoryKeyPassword }}

0 commit comments

Comments
 (0)