We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40858bc commit 9fc320eCopy full SHA for 9fc320e
.github/workflows/release.yml
@@ -40,6 +40,11 @@ jobs:
40
git fetch origin main:main # Fetch main
41
git merge --no-ff --allow-unrelated-histories -m "Merge main into dist" main # Merge main into dist
42
43
+ - name: Set Git Identity
44
+ run: |
45
+ git config --global user.name 'googlemaps-bot'
46
+ git config --global user.email 'googlemaps-bot@users.noreply.github.com'
47
+
48
- uses: actions/cache@v3
49
with:
50
path: ~/.npm
@@ -72,4 +77,4 @@ jobs:
72
77
else
73
78
git commit -m "Update dist folder [skip ci]"
74
79
git push origin dist
75
- fi
80
+ fi
0 commit comments