Skip to content

Update graph.py

Update graph.py #103

Workflow file for this run

name: Publish documentation
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install -e .
cd docs
- name: Build main site
env:
SITE_ENV: ${{ secrets.SITE_ENV }}
run: |
cd docs
aurora build
- name: rsync deployments
uses: burnett01/[email protected]
with:
switches: -avzr
path: "docs/_site/*"
remote_path: ${{ secrets.PATH }}
remote_host: ${{ secrets.SERVER_HOST }}
remote_user: ${{ secrets.SERVER_USERNAME }}
remote_key: ${{ secrets.KEY }}