Publish Documentation #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Documentation | |
on: | |
- workflow_call | |
- workflow_dispatch | |
jobs: | |
documentation-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: SCM Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Development Environment | |
uses: ./.github/actions/ka3005p-dev | |
- name: Build Documentation | |
run: | | |
just docs-build | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: ./doc/book | |
git-config-name: Github Action | |
git-config-email: [email protected] |