Skip to content

Commit f2925f6

Browse files
authored
Fix deploy to git step in CI (#692)
1 parent 508c1d7 commit f2925f6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/checks.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,9 +379,14 @@ jobs:
379379
- name: Debug build results
380380
run: ls -l ./internal/api
381381

382+
- name: Configure git user
383+
run: |
384+
git config user.email "[email protected]"
385+
git config user.name "Deployer"
386+
382387
- name: Commit and push new libraries
383388
run: |
384389
git status
385390
git add ./internal/api
386-
git commit --allow-empty -m '[skip ci] Built release libraries'
387-
git push
391+
git commit --allow-empty -m "[skip ci] Built release libraries"
392+
git push origin "${{ github.ref_name }}"

0 commit comments

Comments
 (0)