Skip to content

Commit

Permalink
correct dir structure error
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-418 authored Jun 12, 2024
1 parent baff9e7 commit 7f84c85
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ jobs:
run: |
git config --global user.email "github-actions@github.com"
git config --global user.name "GitHub Action"
# pull generated files from github profile page and commit them
git remote add readmes https://github.com/getlantern/.github.git
git fetch readmes
git checkout --no-overlay readmes/main -- profile
git add README* # add every file that starts with README
mv profile/* .
rm -rf profile
git add README*
git diff --quiet && git diff --staged --quiet || git commit -m 'fetched from getlantern/.github/profile'; git push

0 comments on commit 7f84c85

Please sign in to comment.