Skip to content

Commit

Permalink
[LOCAL] Configure git user before attempting to publish a release (#4…
Browse files Browse the repository at this point in the history
  • Loading branch information
cortinico committed Jun 18, 2024
1 parent a0c8380 commit f4b1dd1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/actions/create-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "[email protected]"
git config --local user.name "React Native Bot"
- name: Creating release commit
shell: bash
run: |
Expand Down

0 comments on commit f4b1dd1

Please sign in to comment.