Skip to content

Commit 1a18ce3

Browse files
Fix paths and git config (#37)
--------- Co-authored-by: Nick Santamaria <[email protected]>
1 parent db28678 commit 1a18ce3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/tide_merge_to_reference.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ jobs:
99
steps:
1010
- name: Checkout code
1111
uses: actions/checkout@v4
12+
- name: Configure Git
13+
run: |
14+
git config --global user.email "${{ secrets.DEPLOY_USER_EMAIL }}" && git config --global user.name "${{ secrets.DEPLOY_USER_NAME }}"
1215
- name: Merge to reference branch
1316
run: |
14-
/__w/${GITHUB_REPOSITORY#*/}/${GITHUB_REPOSITORY#*/}/.circleci/merge-to-reference.sh
17+
bash .circleci/merge-to-reference.sh

0 commit comments

Comments
 (0)