Skip to content

Commit

Permalink
Merge 02d69b6 into 2d03cb8
Browse files Browse the repository at this point in the history
  • Loading branch information
brown9804 authored Jan 13, 2025
2 parents 2d03cb8 + 02d69b6 commit 629cb0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/md-html-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
- name: Convert Markdown to HTML
run: |
mkdir -p _site
for file in *.md; do
pandoc "$file" --standalone --toc -o "_site/${file%.md}.html"
find . -name "*.md" -type f | while read file; do
pandoc "$file" --standalone --toc -o "_site/$(basename "${file%.md}.html")"
done
- name: Deploy to GitHub Pages
Expand Down

0 comments on commit 629cb0a

Please sign in to comment.