Skip to content

sw: Create a dist directory for packaging #50

sw: Create a dist directory for packaging

sw: Create a dist directory for packaging #50

Workflow file for this run

name: Test Doc build
on:
[push, pull_request]
jobs:
doc-build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Update the system
run: |
sudo apt update -y
- name: Install dependencies
run: |
sudo apt install -y python3 python3-docutils python3-sphinx
- name: Check documentation
run: |
cd Documentation
make html
- name: Deploy to temporary link
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.SECRET_TOKEN }}
publish_dir: ./Documentation/output/html