Skip to content

Commit

Permalink
Adds a GitHub Action that publishes the Scaler docs. (#31)
Browse files Browse the repository at this point in the history
Signed-off-by: rafa-be <raphael@noisycamp.com>
  • Loading branch information
rafa-be authored Oct 18, 2024
1 parent acbf984 commit ab333d0
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 3 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Publish documentation to GitHub Pages

on:
release:
types: [created]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: "3.8"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r docs/requirements_docs.txt
- name: Build documentation
run: cd docs && make html

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs/build/html'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
1 change: 0 additions & 1 deletion docs/requirements_docs.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
sphinx
sphinx-jsonschema
sphinx_rtd_theme
sphinx-substitution-extensions
1 change: 0 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"sphinx.ext.doctest",
"sphinx_substitution_extensions",
"sphinx.ext.napoleon",
"sphinx-jsonschema",
"sphinx.ext.autosectionlabel",
]

Expand Down
2 changes: 1 addition & 1 deletion scaler/about.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.8.9"
__version__ = "1.8.10"

0 comments on commit ab333d0

Please sign in to comment.