Skip to content
This repository was archived by the owner on Mar 8, 2024. It is now read-only.

Commit e1ea18e

Browse files
Fix sonatype URL and CI step name
1 parent 3ac69ca commit e1ea18e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ commands:
2929
load_gpg_key:
3030
description: Loads the Base64 encoded GPG key into a file
3131
steps:
32-
- run: echo $GPG_KEY_CONTENTS | base64 -d > $SIGNING_SECRET_KEY_RING_FILE
32+
- run:
33+
name: Load GPG key
34+
command: echo $GPG_KEY_CONTENTS | base64 -d > $SIGNING_SECRET_KEY_RING_FILE
3335

3436
jobs:
3537
nightly_check:

scripts/publish-mavencentral.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ publishing {
100100
repositories {
101101
maven {
102102
name = "mavenCentral"
103-
url = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
103+
url = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2"
104104
credentials {
105105
username ossrhUsername
106106
password ossrhPassword

0 commit comments

Comments
 (0)