Skip to content

Commit

Permalink
Merge pull request #26 from SamJUK/fix/build
Browse files Browse the repository at this point in the history
Fix CI Builds
  • Loading branch information
navarr authored Nov 18, 2024
2 parents d4f6d54 + 7a10b4b commit bd366c7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 23 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run Sphinx documentation build
uses: ammaraskar/sphinx-action@0.4
uses: ammaraskar/sphinx-action@8.1.3
with:
docs-folder: "./"
- name: Upload documentation artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: _build/html/
deploy:
Expand All @@ -38,4 +38,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run Sphinx documentation build
uses: ammaraskar/sphinx-action@0.4
uses: ammaraskar/sphinx-action@8.1.3
with:
docs-folder: "./"
- name: Upload documentation artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: documentation
path: _build/html/
path: _build/html/
2 changes: 0 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,8 @@
exclude_patterns = ['_build']

html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_show_sourcelink = False

html_static_path = ['_static']
templates_path = ['_templates']
html_extra_path = ['_redirects']

Expand Down
7 changes: 0 additions & 7 deletions index.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
Welcome to Warden's documentation!
==================================

```{include} ../README.md
---
start-line: 1
end-before: <!-- include_open_stop -->
---
```

Under the hood `docker-compose` is used to control everything which Warden runs (shared services as well as per-project containers) via the Docker Engine.

## Features
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sphinx>=5.0.0,<6.0.0
Sphinx==8.1.3
sphinx-autobuild==2024.10.3
sphinx_rtd_theme>=1.0.0,<2.0
myst-parser>=0.18.0,<1.0
sphinx-copybutton>=0.2.11,<1.0
sphinx-markdown-tables>=0.0.15,<1.0
jinja2>=3.0
sphinx-copybutton==0.5.2
sphinx-markdown-tables==0.0.17
sphinx-rtd-theme==3.0.2
myst-parser==4.0.0
Jinja2==3.1.4

0 comments on commit bd366c7

Please sign in to comment.