Skip to content

Commit 9fc320e

Browse files
authored
Update release.yml (#166)
Adds the step for setting git identity back, apparently we need that.
1 parent 40858bc commit 9fc320e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
git fetch origin main:main # Fetch main
4141
git merge --no-ff --allow-unrelated-histories -m "Merge main into dist" main # Merge main into dist
4242
43+
- name: Set Git Identity
44+
run: |
45+
git config --global user.name 'googlemaps-bot'
46+
git config --global user.email '[email protected]'
47+
4348
- uses: actions/cache@v3
4449
with:
4550
path: ~/.npm
@@ -72,4 +77,4 @@ jobs:
7277
else
7378
git commit -m "Update dist folder [skip ci]"
7479
git push origin dist
75-
fi
80+
fi

0 commit comments

Comments
 (0)