Skip to content

Commit

Permalink
Try to fix regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
moisseev committed May 10, 2024
1 parent ffff0dd commit 31b1dd0
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,14 @@ jobs:
- run: |
mkdir -p _site-root
ln -s ../_site/ _site-root/${{ github.event.repository.name }}
- run: ls ./_site-root/
- run: ls ./_site-root/${{ github.event.repository.name }}
- name: Check broken links
env:
INPUT_URL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}
INPUT_PAGES_PATH: ./_site-root/
INPUT_CMD_PARAMS: >
--buffer-size=8192 --max-connections=10 --color=always --skip-tls-verification
--exclude="^https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/doc/lua/((lua|rspamd)_.+|ucl).html$"
--exclude="^https://${{ github.repository_owner }}[.]github[.]io/${{ github.event.repository.name }}/doc/lua/((lua|rspamd)_.+|ucl)[.]html$"
INPUT_DEBUG: true
run: |
wget -qO- https://raw.githubusercontent.com/ruzickap/action-my-broken-link-checker/v2/entrypoint.sh | bash
Expand All @@ -42,6 +40,6 @@ jobs:
url: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}
pages_path: ./_site-root/
cmd_params: >
--buffer-size=8192 --max-connections=10 --color=always --skip-tls-verification --header="User-Agent:curl/7.54.0"
--exclude="https://${{ github.repository_owner }}[.]github[.]io/${{ github.event.repository.name }}/doc/lua/rspamd_.+[.]html"
--buffer-size=8192 --skip-tls-verification
--exclude="^https://${{ github.repository_owner }}[.]github[.]io/${{ github.event.repository.name }}/doc/lua/((lua|rspamd)_.+|ucl)[.]html$"
debug: true

0 comments on commit 31b1dd0

Please sign in to comment.