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 9caca97 commit a12a7cbCopy full SHA for a12a7cb
.github/workflows/release.yml
@@ -28,9 +28,14 @@ jobs:
28
env:
29
GOOGLE_MAPS_JS_SAMPLES_KEY: "${{ secrets.GOOGLE_MAPS_JS_SAMPLES_KEY }}"
30
steps:
31
- - uses: actions/checkout@v3
+ - name: Checkout code
32
+ uses: actions/checkout@v3
33
with:
34
token: ${{ secrets.GITHUB_TOKEN }}
35
+ - name: Set Git Identity
36
+ run: |
37
+ git config user.name 'github-actions[bot]'
38
+ git config user.email 'github-actions[bot]@users.noreply.github.com'
39
- uses: actions/cache@v3
40
41
path: ~/.npm
0 commit comments