Skip to content

Fixed saving of ref_lines vals in ledger #7

Fixed saving of ref_lines vals in ledger

Fixed saving of ref_lines vals in ledger #7

Workflow file for this run

name: Docs
on:
push:
branches:
- main
- master
paths:
- docs/**
- autoemx/**
- autoemxsp/**
- pyproject.toml
- .github/workflows/docs.yml
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install package and docs dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e . sphinx sphinx-rtd-theme
- name: Build Sphinx docs
run: |
sphinx-build -b html docs docs/_build/html
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/_build/html
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4