Skip to content

Commit

Permalink
Update .github/workflows/broken-linkcheck.yml
Browse files Browse the repository at this point in the history
Co-authored-by: Philip Meier <[email protected]>
  • Loading branch information
ggold7046 and pmeier authored Sep 28, 2023
1 parent 3a35cd6 commit a602153
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/broken-linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ jobs:

- name: Run linkcheck script
working-directory: ./doc
run: python make.py linkcheck | tee linkcheck.txt
shell: bash
run: |
set -o pipefail
python make.py linkcheck | tee linkcheck.txt
- name: Display broken links
if: failure()
Expand Down

0 comments on commit a602153

Please sign in to comment.