Skip to content
Draft
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: 8 additions & 0 deletions .github/workflows/sphinxbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.10'
Expand All @@ -33,6 +35,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.10'
Expand All @@ -46,6 +50,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.10'
Expand All @@ -67,6 +73,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.10'
Expand Down
3 changes: 1 addition & 2 deletions build/get-server-sources.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ printf "\n"
if [ -d server/.git ]; then
cd server
git remote set-branches --add origin $NC_BRANCH
git fetch --depth 1
git checkout $NC_BRANCH
git reset --hard origin/$NC_BRANCH
else
git clone https://github.com/nextcloud/server server --depth 1 --single-branch --branch $NC_BRANCH
git clone https://github.com/nextcloud/server server --single-branch --branch $NC_BRANCH
fi;
3 changes: 3 additions & 0 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
'sphinx_copybutton',
'sphinxcontrib.mermaid',
'notfound.extension',
'sphinx_last_updated_by_git',
]

# General information about the project.
Expand All @@ -41,6 +42,8 @@
# relative path to subdirectories
html_logo = "../_shared_assets/static/logo-white.png"

html_last_updated_fmt = '%c'

# substitutions go here
rst_epilog = '.. |version| replace:: %s' % version

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ smartypants==2.0.2
snowballstemmer==3.0.1
Sphinx==8.1.3
sphinx-copybutton==0.5.2
sphinx-last-updated-by-git==0.3.8
sphinx-rtd-theme==3.0.2
sphinx-rtd-dark-mode==1.3.0
sphinxcontrib-applehelp==2.0.0
Expand Down
Loading