Skip to content

Commit

Permalink
Update build_documentation.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chrwm authored Mar 20, 2024
1 parent c6e8b96 commit 2d7116f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,14 @@ jobs:
- name: Build MkDocs
run: mkdocs build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./built_docs_for_gh_pages

- name: Archive MkDocs Build
uses: actions/upload-artifact@v2
with:
name: mkdocs-artifacts
path: built_docs_for_gh_pages # Change this to your MkDocs build directory
path: ./built_docs_for_gh_pages # Change this to your MkDocs build directory

0 comments on commit 2d7116f

Please sign in to comment.