Skip to content

Commit

Permalink
reintroduce optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
masci committed Feb 9, 2024
1 parent 4307b4b commit 2a6b2bc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/CI_readme_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,8 @@ jobs:
README_API_KEY: ${{ secrets.README_API_KEY }}
ALL_CHANGED_DIRS: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
for d in "$ALL_CHANGED_DIRS"; do
cd $d
hatch run docs
cd -
for d in $ALL_CHANGED_DIRS; do
(cd $d; hatch run docs)
done
mkdir tmp
find . -name "_readme_*.md" -exec cp "{}" tmp \;
Expand Down

0 comments on commit 2a6b2bc

Please sign in to comment.