Skip to content

Commit

Permalink
add .nojekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
akaszynski committed Sep 9, 2024
1 parent 86d48b1 commit 9d4ff4c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/testing-and-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@ jobs:
uses: JamesIves/[email protected]
# if: startsWith(github.ref, 'refs/tags/')
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/build/html
CLEAN: true
branch: gh-pages
folder: docs/build/html
clean: true

build_wheels:
name: Build wheels on ${{ matrix.os }}
Expand Down
3 changes: 3 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ help:
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
@if echo "$@" | grep -q "html"; then \
touch "$(BUILDDIR)"/html/.nojekyll; \
fi

clean:
rm -rf $(BUILDDIR)/*
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
}


html_static_path = ["_static"]
# html_static_path = ["_static"]

# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
Expand Down

0 comments on commit 9d4ff4c

Please sign in to comment.