Skip to content

Commit

Permalink
Update deploy-gh-pages.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cudeso authored Jan 21, 2025
1 parent 8546136 commit 7f04554
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ jobs:
- name: Prepare documentation files
run: |
mkdir -p _site
cp -r * _site/
cp -r *.md _site/
cp -r config _site/
cp -r documentation _site/
cp -r misp-playbooks _site/
cp -r tools _site/
# Convert markdown links from .md to .html
find _site -type f -name "*.md" -exec sed -i 's/\.md/\.html/g' {} \;
Expand Down

0 comments on commit 7f04554

Please sign in to comment.