We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff26a0a commit d074beaCopy full SHA for d074bea
.github/workflows/package.yml
@@ -21,7 +21,8 @@ jobs:
21
npm run build
22
- name: Commit
23
run: |
24
- git config --global user.name "GitHub Actions"
+ git config user.name "$(git log -n 1 --pretty=format:%an)"
25
+ git config user.email "$(git log -n 1 --pretty=format:%ae)"
26
git add dist/
27
git commit -m "chore: Update dist" || echo "No changes to commit"
28
git push origin HEAD:main
0 commit comments