Skip to content

Commit b15736e

Browse files
committed
fix publish
1 parent d17fc88 commit b15736e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/npm_publish.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
CHANGED=$(git diff --name-only HEAD^ HEAD | grep "^packages/" | cut -d/ -f2 | sort -u | jq -R -s -c 'split("\n")[:-1]')
3434
echo "packages=$CHANGED" >> $GITHUB_OUTPUT
3535
36+
- name: Configure Git
37+
run: |
38+
git config --global user.email "github-actions@github.com"
39+
git config --global user.name "GitHub Actions"
40+
3641
- name: Publish changed packages
3742
if: steps.changed.outputs.packages != '[]'
3843
run: |

0 commit comments

Comments
 (0)