Skip to content

Commit

Permalink
Fix publishing to AWS S3
Browse files Browse the repository at this point in the history
See #1972
  • Loading branch information
jaylinski committed Jul 29, 2023
1 parent 65f24eb commit cc304b6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
run: npm ci

- name: Publish
run: npm run publish:aws
run: |
git config --global user.email "release@handlebarsjs.com"
git config --global user.name "handlebars-lang"
npm run publish:aws
env:
# Note: the environment secrets `S3_ACCESS_KEY_ID`
# and `S3_SECRET_ACCESS_KEY` have to be set!
Expand Down

0 comments on commit cc304b6

Please sign in to comment.