Skip to content

Commit

Permalink
fix: using gpgsign false in github action
Browse files Browse the repository at this point in the history
Signed-off-by: Javier Ribó <[email protected]>
  • Loading branch information
elribonazo committed Jul 11, 2024
1 parent 1b028e3 commit 09a000e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
git_user_signingkey: true
git_commit_gpgsign: true
git_config_global: true
git_tag_gpgsign: true
git_tag_gpgsign: false

- name: "Install rust toolchain (Linux)"
if: matrix.os-type == 'linux'
Expand All @@ -119,10 +119,10 @@ jobs:
- name: "Release"
env:
GITHUB_TOKEN: ${{ secrets.IDENTUS_CI }}
GIT_AUTHOR_EMAIL: "[email protected]"
GIT_COMMITTER_EMAIL: "[email protected]"
GIT_AUTHOR_NAME: "hyperledger-bot"
GIT_COMMITTER_NAME: "hyperledger-bot"
GIT_AUTHOR_EMAIL: ${{ steps.import_gpg.outputs.email }}
GIT_COMMITTER_EMAIL: ${{ steps.import_gpg.outputs.email }}
GIT_AUTHOR_NAME: ${{ steps.import_gpg.outputs.name }}
GIT_COMMITTER_NAME: ${{ steps.import_gpg.outputs.name }}
SONATYPE_USERNAME: ${{ env.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ env.SONATYPE_PASSWORD }}
run: |
Expand Down
5 changes: 3 additions & 2 deletions .releaserc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ plugins:
"gradle.properties",
],
message: "chore(release): cut apollo version ${nextRelease.version}
${nextRelease.notes}",
${nextRelease.notes}
Signed-off-by: Hyperledger Bot <[email protected]>",
},
]
- [
Expand Down

0 comments on commit 09a000e

Please sign in to comment.