Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,10 @@ jobs:
- name: Install mdbook-linkcheck
run: |
curl -sSL https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v0.7.7/mdbook-linkcheck.x86_64-unknown-linux-gnu.zip -o linkcheck.zip
unzip linkcheck.zip
unzip -o linkcheck.zip
chmod +x mdbook-linkcheck
echo "$(pwd)" >> $GITHUB_PATH

- name: Install mdbook_header_footer
Comment thread
cgwalters marked this conversation as resolved.
run: |
curl -sSL https://github.com/cgwalters/mdbook_header_footer/releases/download/v0.1.0/mdbook_header_footer-v0.1.0-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=.
echo "$(pwd)" >> $GITHUB_PATH

- name: Build documentation
run: |
cd docs
Expand All @@ -53,7 +48,7 @@ jobs:
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
with:
path: docs/book/html
path: docs/book

deploy:
if: github.ref == 'refs/heads/main'
Expand Down