Skip to content

Document handling of recurring events without instances #18

Document handling of recurring events without instances

Document handling of recurring events without instances #18

Workflow file for this run

name: Build preview
on:
# Runs on pushes targeting the default branch
push:
branches-ignore: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install Sphinx
run: pip install -r requirements.txt
- name: Build HTML documentation
run: make html
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./_build/html
- run: |
echo "::notice You can preview the new manual in the artifact of this workflow! (Download and locally view in browser.)"