Skip to content

Commit abac449

Browse files
authored
fix: Update release.yml again (#134)
Changes the --unset-all to use the `|| true` shell construct.
1 parent 718ab7d commit abac449

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
3434
token: ${{ secrets.GITHUB_TOKEN }}
3535
- name: Clear Git config cache
3636
run: |
37-
git config --unset-all user.name
38-
git config --unset-all user.email
37+
git config --global --unset-all user.name || true
38+
git config --global --unset-all user.email || true
3939
- name: Set Git Identity
4040
run: |
4141
git config --global user.name 'googlemaps-bot'

0 commit comments

Comments
 (0)