diff --git a/README.md b/README.md index 92e5283..5ad2093 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Add a GitHub workflow (e.g. by adding a file `.github/workflows/deploy.yaml` to Important configuration options (see https://github.com/camunda-community-hub/community-action-maven-release/blob/main/action.yml#L3 for all options): - **Sonatype Server:** If you want to deploy artifacts with the group id `io.camunda` you need to adjust the maven url below, as Sonatype uses different servers for newer groups: `maven-url: s01.oss.sonatype.org` -- **Sonatype Credentials:** If you want to deploy artifacts with the group id `io.camunda` you need to adjust the maven credentials below, as Sonatype now requires different credentials as before: `maven-usr: ${{ secrets.MAVEN_CENTRAL_DEPLOYMENT_USR }}` and `maven-psw: ${{ secrets.MAVEN_CENTRAL_DEPLOYMENT_USR }}` +- **Sonatype Credentials:** If you want to deploy artifacts with the group id `io.camunda` you need to adjust the maven credentials below, as Sonatype now requires different credentials as before: `maven-usr: ${{ secrets.COMMUNITY_HUB_MAVEN_CENTRAL_S01_USR }}` and `maven-psw: ${{ secrets.COMMUNITY_HUB_MAVEN_CENTRAL_S01_PSW }}` - **Branch:** If you want to support multiple versions and have different branches for managing those, you can configure them in the action: `branch: ${{ github.event.release.target_commitish || github.ref_name }}` ```yaml @@ -65,8 +65,8 @@ jobs: release-version: ${{ github.event.release.tag_name }} nexus-usr: ${{ secrets.NEXUS_USR }} nexus-psw: ${{ secrets.NEXUS_PSW }} - maven-usr: ${{ secrets.MAVEN_CENTRAL_DEPLOYMENT_USR_C7 }} - maven-psw: ${{ secrets.MAVEN_CENTRAL_DEPLOYMENT_PSW_C7 }} + maven-usr: ${{ secrets.COMMUNITY_HUB_MAVEN_CENTRAL_OSS_USR }} + maven-psw: ${{ secrets.COMMUNITY_HUB_MAVEN_CENTRAL_OSS_PSW }} maven-url: oss.sonatype.org maven-gpg-passphrase: ${{ secrets.MAVEN_CENTRAL_GPG_SIGNING_KEY_PASSPHRASE }} maven-auto-release-after-close: true