diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml index 557cea2..526ec10 100644 --- a/.github/workflows/jekyll-gh-pages.yml +++ b/.github/workflows/jekyll-gh-pages.yml @@ -33,10 +33,31 @@ jobs: - name: Converts Markdown to HTML uses: jaywcjlove/markdown-to-html-cli@main with: - source: README.md + source: ./ output: ./processed/index.html github-corners: https://github.com/jaywcjlove/markdown-to-html-cli favicon: data:image/svg+xml,🌐 + - name: Find and Replace JAVASCRIPT.md links + uses: jacobtomlinson/gha-find-replace@v3 + with: + find: "JAVASCRIPT.md" + replace: "JAVASCRIPT.html" + include: "processed/**" + regex: true + - name: Find and Replace REACTJS.md links + uses: jacobtomlinson/gha-find-replace@v3 + with: + find: "REACTJS.md" + replace: "REACTJS.html" + include: "processed/**" + regex: true + - name: Find and Replace LINKS.md links + uses: jacobtomlinson/gha-find-replace@v3 + with: + find: "LINKS.md" + replace: "LINKS.html" + include: "processed/**" + regex: true - name: Setup Pages uses: actions/configure-pages@v4 - name: Build with Jekyll