Skip to content

Commit 028cf20

Browse files
minor fixes
1 parent e5ac799 commit 028cf20

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/fetch.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
UNSPLASH_COLLECTION_ID: ${{ vars.UNSPLASH_COLLECTION_ID }}
99

1010
jobs:
11-
dist:
11+
fetch:
1212
runs-on: ubuntu-latest
1313
permissions:
1414
contents: write
@@ -24,4 +24,9 @@ jobs:
2424
- name: Fetch
2525
run: bash fetch.sh
2626
- name: Commit and push
27-
run: git add -A && git commit -m "update images" && git push origin
27+
run: |
28+
git config --global user.email "${GITHUB_ACTOR}"
29+
git config --global user.name "${GITHUB_ACTOR}@users.noreply.github.com"
30+
git add -A
31+
git commit -m "update images"
32+
git push origin

0 commit comments

Comments
 (0)