From 5ec8d589e1bc406eb91c07e3a6fa8ad8afbe9c13 Mon Sep 17 00:00:00 2001 From: Ashley Dumaine Date: Thu, 4 Apr 2024 13:26:41 -0400 Subject: [PATCH] check for broken links --- .github/workflows/gh-pages.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 7e656480b..30e78b016 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -38,6 +38,12 @@ jobs: uses: actions/upload-pages-artifact@v3 with: path: 'docs/book' + - name: Check broken links + uses: ruzickap/action-my-broken-link-checker@v2 + with: + url: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }} + pages_path: docs/book + cmd_params: '--buffer-size=8192 --max-connections=10 --color=always --skip-tls-verification --header="User-Agent:curl/7.54.0" --timeout=20' deploy-page: needs: generate-docs