Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI Builds #26

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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