Skip to content

Commit

Permalink
Merge pull request #65 from camunda-community-hub/jonathanlukas-patch-1
Browse files Browse the repository at this point in the history
Adjusted secret names to agreed ones
  • Loading branch information
xomiamoore authored Jun 28, 2024
2 parents af1edbc + 8e76ae2 commit 2ecce34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2ecce34

Please sign in to comment.