Skip to content

Commit

Permalink
Add gh-pages workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Feb 3, 2024
1 parent 2c3c6da commit fdc53cd
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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]

0 comments on commit fdc53cd

Please sign in to comment.