Skip to content

Commit a957537

Browse files
committed
fix: #86 Force signing with just the email address of the bot
Signed-off-by: Laurent Broudoux <[email protected]>
1 parent 6f226b2 commit a957537

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: |
5454
git config user.name "microcks-bot"
5555
git config user.email "[email protected]"
56-
git commit -S -m "chore: Releasing version ${{ github.event.inputs.version }}" .
56+
git commit -s -m "chore: Releasing version ${{ github.event.inputs.version }}" .
5757
git tag ${{ github.event.inputs.version }}
5858
git push origin ${{ github.event.inputs.version }}
5959
@@ -92,7 +92,7 @@ jobs:
9292
9393
- name: Commit, push and tag changes
9494
run: |
95-
git commit -S -m "chore: Setting ALPHA VersionSuffix to ${{ github.event.inputs.nextVersion }}" .
95+
git commit -s -m "chore: Setting ALPHA VersionSuffix to ${{ github.event.inputs.nextVersion }}" .
9696
git push origin ${{ github.event.inputs.branch }}
9797
9898

0 commit comments

Comments
 (0)