diff --git a/.github/workflows/checklinks.yaml b/.github/workflows/checklinks.yaml index 5571fce..4b9866f 100644 --- a/.github/workflows/checklinks.yaml +++ b/.github/workflows/checklinks.yaml @@ -29,10 +29,11 @@ jobs: run: bundle exec jekyll build - name: Check for broken links run: | - bundle exec rake test &> links.log - continue-on-error: true + set -o pipefail + bundle exec rake test 2>&1 | tee links.log - name: Archive log links uses: actions/upload-artifact@v1 with: name: links-check.log - path: links.log \ No newline at end of file + path: links.log + if: ${{ always() }} \ No newline at end of file diff --git a/_includes/header.html b/_includes/header.html index e2bba86..55dcf08 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -6,7 +6,7 @@