Skip to content

Commit

Permalink
config github user and name (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
pacoxu authored Nov 15, 2024
1 parent 8e580f0 commit 86734dd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/releases-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
- name: Install dependent
run: |
make dependent
- name: Config Github
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub"
- name: Checkout
run: |
make $(basename ${GITHUB_REF})
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/releases-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
- name: Install dependent
run: |
make dependent
- name: Config Github
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub"
- name: Checkout
run: |
make $(basename ${GITHUB_REF})
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/releases-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
- name: Install dependent
run: |
make dependent
- name: Config Github
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub"
- name: Checkout
run: |
make $(basename ${GITHUB_REF})
Expand Down

0 comments on commit 86734dd

Please sign in to comment.