From a118a9deabbf4756d84779765a6f122a0be9f268 Mon Sep 17 00:00:00 2001 From: Tomasz Komoszeski Date: Sat, 8 Jun 2024 15:42:24 +0200 Subject: [PATCH] fix for check archive index page --- .github/workflows/broken-links.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/broken-links.yml b/.github/workflows/broken-links.yml index 71a95914..d9c8e0f2 100644 --- a/.github/workflows/broken-links.yml +++ b/.github/workflows/broken-links.yml @@ -49,4 +49,5 @@ jobs: with: fail: true # removed md files that include liquid tags - args: --exclude-path README.md --exclude-path _pages/404.md --exclude-path _pages/blog.md --exclude-path _i18n/en/_posts/2018-12-22-distill.md --exclude-path _i18n/pt-br/_posts/2018-12-22-distill.md --verbose --no-progress './**/*.md' './**/*.html' + # remove archived html page + args: --exclude-path archive/index.html --exclude-path README.md --exclude-path _pages/404.md --exclude-path _pages/blog.md --exclude-path _i18n/en/_posts/2018-12-22-distill.md --exclude-path _i18n/pt-br/_posts/2018-12-22-distill.md --verbose --no-progress './**/*.md' './**/*.html'