[LOCAL] Configure git user before attempting to publish a release (#45039)

This commit is contained in:
Nicola Corti
2024-06-18 18:31:53 +01:00
parent a0c83803e8
commit f4b1dd1fa1
@@ -17,6 +17,11 @@ runs:
- name: Yarn install
shell: bash
run: yarn install --non-interactive
- name: Configure Git
shell: bash
run: |
git config --local user.email "bot@reactnative.dev"
git config --local user.name "React Native Bot"
- name: Creating release commit
shell: bash
run: |