Skip to content

Commit

Permalink
Dead links action fix 3 (#367)
Browse files Browse the repository at this point in the history
* Changing version format

* Changed to doc folder before bundle install

* Changing to docs folder in every step

Co-authored-by: Dimitris-Ilias Gkanatsios <[email protected]>
  • Loading branch information
javier-op and dgkanatsios authored Aug 4, 2022
1 parent b0e647b commit 519f4e2
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/pages-check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,19 @@ jobs:
ruby-version: 2.7

- name: Setup Rubygems, Bundler, jekyll
run: |
run: |
cd docs/
gem update --system --no-document
gem update bundler --no-document
gem install jekyll bundler
bundle install
- name: Build jekyll website with drafts
run: bundle exec jekyll build --drafts
run: |
cd docs/
bundle exec jekyll build --drafts
- name: Check for broken links
run: bundle exec htmlproofer --log-level :debug ./_site --swap-urls '^/thundernetes/:/' --ignore-status-code 403
run: |
cd docs/
bundle exec htmlproofer --log-level :debug ./_site --swap-urls '^/thundernetes/:/' --ignore-status-code 403

0 comments on commit 519f4e2

Please sign in to comment.