Skip to content

Commit 6e10b1f

Browse files
committed
Fix publishing to AWS S3
See #1972
1 parent 65f24eb commit 6e10b1f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
run: npm ci
2525

2626
- name: Publish
27-
run: npm run publish:aws
27+
run: |
28+
git config --global user.email "[email protected]"
29+
git config --global user.name "handlebars-lang"
30+
npm run publish:aws
2831
env:
2932
# Note: the environment secrets `S3_ACCESS_KEY_ID`
3033
# and `S3_SECRET_ACCESS_KEY` have to be set!

0 commit comments

Comments
 (0)