diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml index 29bfc57..b0820fd 100644 --- a/.github/workflows/deploy-gh-pages.yml +++ b/.github/workflows/deploy-gh-pages.yml @@ -11,4 +11,4 @@ on: jobs: deploy: runs-on: ubuntu-latest - steps: [uses: fastai/workflows/quarto-ghp@master] + steps: [uses: thatgeeman/workflows/quarto-ghp@master] diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..eeafe1a --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +clean: + rm -rf _docs/ + rm -rf _proc/_docs +deps: + pipenv lock -r > tmp.txt + tail -r tmp.txt | sed -e "/^-/d" -e "/^#/d" | cut -d';' -f1 > requirements.txt + rm tmp.txt