Skip to content

Commit

Permalink
Adding the base model component documentation now that it is available.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdelliot committed Nov 21, 2024
1 parent 8b9a78c commit 2d2ac7c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
pull_request:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -25,9 +27,7 @@ concurrency:

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -51,11 +51,12 @@ jobs:

# Deployment job
deploy:
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/main' # Only run on pushes to main
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
Expand Down
4 changes: 4 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,13 @@ commands =
basepython = python3
changedir={toxinidir}/docs
extras = docs
deps =
firewheel-repo-base
allowlist_externals=
/usr/bin/make
/bin/mkdir
commands =
mkdir -p source/model_components
make html
all: make singlehtml
all: sphinx-build -M man source/cli build -c source
Expand Down

0 comments on commit 2d2ac7c

Please sign in to comment.