Skip to content

add more docs

add more docs #11

Workflow file for this run

name: Documentation
on:
pull_request:
paths:
- 'docs/**'
- '.github/workflows/docs.yml'
push:
branches:
- develop
paths:
- 'docs/**'
- '.github/workflows/docs.yml'
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ammaraskar/[email protected]
with:
docs-folder: "docs/"
build-command: make html dirhtml
- uses: actions/upload-artifact@v3
with:
name: Documentation
path: docs/build/html/
- uses: actions/upload-pages-artifact@v2
with:
path: docs/build/dirhtml/
# Deployment job
deploy:
if: github.ref == 'refs/heads/develop'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: docs
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2