File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 28
28
- run : ./gradlew publish
29
29
if : ${{ github.ref == 'refs/heads/trunk' && github.repository == 'cashapp/turbine' }}
30
30
env :
31
- ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.SONATYPE_USERNAME_APP_CASH }}
32
- ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.SONATYPE_PASSWORD_APP_CASH }}
31
+ ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.SONATYPE_CENTRAL_USERNAME }}
32
+ ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.SONATYPE_CENTRAL_PASSWORD }}
33
33
ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.GPG_SECRET_KEY }}
34
34
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword : ${{ secrets.GPG_SECRET_PASSPHRASE }}
35
35
Original file line number Diff line number Diff line change 21
21
22
22
- name : Build and publish artifacts
23
23
env :
24
- ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.SONATYPE_USERNAME_APP_CASH }}
25
- ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.SONATYPE_PASSWORD_APP_CASH }}
24
+ ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.SONATYPE_CENTRAL_USERNAME }}
25
+ ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.SONATYPE_CENTRAL_PASSWORD }}
26
26
ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.GPG_SECRET_KEY }}
27
27
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword : ${{ secrets.GPG_SECRET_PASSPHRASE }}
28
28
run : ./gradlew dokkaGenerate publish
Original file line number Diff line number Diff line change 7
7
- Nothing yet!
8
8
9
9
### Changed
10
- - Nothing yet!
10
+ - In-development snapshots are now published to the Central Portal Snapshots repository at https://central.sonatype.com/repository/maven-snapshots/ .
11
11
12
12
### Fixed
13
13
- Calling ` testIn ` with a ` CoroutineScope ` that does not contain a ` Job ` no longer throws ` IllegalStateException ` .
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ dependencies {
27
27
```
28
28
29
29
<details >
30
- <summary >Snapshots of the development version are available in Sonatype's snapshots repository.</summary >
30
+ <summary >Snapshots of the development version are available in the Central Portal Snapshots repository.</summary >
31
31
<p >
32
32
33
33
``` kotlin
34
34
repositories {
35
35
maven {
36
- url = uri(" https://oss .sonatype.org/content/repositories/ snapshots/" )
36
+ url = uri(" https://central .sonatype.com/repository/maven- snapshots/" )
37
37
}
38
38
}
39
39
dependencies {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ POM_ARTIFACT_ID=turbine
5
5
VERSION_NAME =1.3.0-SNAPSHOT
6
6
7
7
SONATYPE_AUTOMATIC_RELEASE =true
8
- SONATYPE_HOST =DEFAULT
8
+ SONATYPE_HOST =CENTRAL_PORTAL
9
9
RELEASE_SIGNING_ENABLED =true
10
10
11
11
POM_NAME =Turbine
You can’t perform that action at this time.
0 commit comments