Skip to content

Commit

Permalink
Improved naming
Browse files Browse the repository at this point in the history
  • Loading branch information
glebashnik committed Aug 14, 2024
1 parent 40419ec commit cb6b50f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/link-check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: link-check
name: Link check

on:
workflow_dispatch:
Expand Down Expand Up @@ -27,22 +27,23 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: install
- name: Install tools
run: |
gem update --system 3.3.3
gem install bundler
export LANG=C.UTF-8
bundle install
- name: add-front-matter-for-processing
- name: Add front matter for processing
run: |
find . -not -path './_site/*' -name \*.md | \
while read f; do (echo -e "---\nrender_with_liquid: false\n---\n"; cat ${f})>${f}.new; mv ${f}.new ${f}; done
- name: build-site
- name: Build site
run: |
bundle exec jekyll build
- name: check-links
- name: Check links
run: |
bundle exec htmlproofer \
--assume-extension --check-html --no-check-external-hash --no-enforce-http \
Expand Down

0 comments on commit cb6b50f

Please sign in to comment.