Skip to content

Commit a373f2e

Browse files
authored
Merge pull request #15 from contentpass/CHORE-fix-publish-workflow
Fix publish workflow
2 parents 4efb1ff + 9862c60 commit a373f2e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
- name: Publish to MavenCentral
3131
run: ./gradlew publishReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository
3232
env:
33-
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
34-
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
33+
CENTRAL_USERNAME: ${{ secrets.CENTRAL_USERNAME }}
34+
CENTRAL_PASSWORD: ${{ secrets.CENTRAL_PASSWORD }}
3535
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
3636
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
3737
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Our SDK is available on Maven Central.
1515

1616
```groovy
17-
implementation 'de.contentpass:contentpass-android:2.2.4'
17+
implementation 'de.contentpass:contentpass-android:2.2.5'
1818
```
1919

2020
Add this to your app's `build.gradle` file's `dependencies` element.

lib/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ kapt {
5858
extra.apply{
5959
set("PUBLISH_GROUP_ID", "de.contentpass")
6060
set("PUBLISH_ARTIFACT_ID", "contentpass-android")
61-
set("PUBLISH_VERSION", "2.2.4")
61+
set("PUBLISH_VERSION", "2.2.5")
6262
}
6363

6464
apply("${rootProject.projectDir}/scripts/publish-module.gradle")

0 commit comments

Comments
 (0)