Skip to content

Commit f0bdcf1

Browse files
push docs action
1 parent 387928d commit f0bdcf1

File tree

199 files changed

+8
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+8
-3
lines changed

.github/workflows/check-docs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ jobs:
3030
- name: Build documentation
3131
run: |
3232
make html
33+
- name: Push changes to remote
34+
run: |
35+
git config --global user.name "github-actions[bot]"
36+
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
37+
git add docs git commit -m "Update docs"
38+
git push
3339
- uses: actions/upload-artifact@v1
3440
with:
3541
name: DocumentationHTML

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# from the environment for the first two.
66
SPHINXOPTS ?=
77
SPHINXBUILD ?= sphinx-build
8-
SOURCEDIR = docs/source
8+
SOURCEDIR = src_docs
99
BUILDDIR = docs
1010

1111
# Put it first so that "make" without argument is like "make help".

docs/index.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

make.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ REM Command file for Sphinx documentation
77
if "%SPHINXBUILD%" == "" (
88
set SPHINXBUILD=sphinx-build
99
)
10-
set SOURCEDIR=docs/source
10+
set SOURCEDIR=src_docs
1111
set BUILDDIR=docs
1212

1313
if "%1" == "" goto help
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)