Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/rolfsimoes/zen into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfsimoes committed Mar 25, 2024
2 parents 5fc5e3a + 5ed3ce6 commit fc148bd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@ dist/
_build/

# Local support files
deploy.sh
zen.code-workspace
.vscode/settings.json
11 changes: 11 additions & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
[ ! -d "docs" ] && mkdir "docs"
pip install -e .
make clean
make html
rm -fr docs/*
cp -r sphinx/_build/html/* docs/
[ ! -f "docs/.nojekyll" ] && touch "docs/.nojekyll"
git add docs
git commit -m "Documentation deployment"
git push origin dev

0 comments on commit fc148bd

Please sign in to comment.