Skip to content

Commit 66281e2

Browse files
committed
fix: adjust release job
1 parent d2b3143 commit 66281e2

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/release-please.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ on:
22
push:
33
branches:
44
- dev
5+
- test/release-job
56

67
permissions:
78
contents: write
@@ -19,6 +20,13 @@ jobs:
1920
mobile_release_created: ${{ steps.release.outputs.leather-io-mobile--release-created }}
2021
# Our PNPM workspace issue was fixed here: https://github.com/googleapis/release-please/pull/2281
2122
steps:
23+
- uses: actions/checkout@v4
24+
25+
- name: Set up Git user
26+
run: |
27+
git config user.name "leather-bot"
28+
git config user.email "[email protected]"
29+
2230
- name: Import GPG key
2331
uses: crazy-max/ghaction-import-gpg@v5
2432
with:
@@ -37,8 +45,7 @@ jobs:
3745
manifest-file: .release-please-manifest.json
3846
default-branch: dev
3947
release-type: 'minor'
40-
# Add GPG signing configuration
41-
signoff: true
48+
signoff: 'leather-bot <[email protected]>'
4249

4350
# The logic below handles the npm publication:
4451
deploy:

0 commit comments

Comments
 (0)