Skip to content

Commit

Permalink
Add Makefile (#24)
Browse files Browse the repository at this point in the history
* Update deploy-gh-pages.yml

* Create Makefile
  • Loading branch information
thatgeeman authored Aug 19, 2023
1 parent 654221d commit 4dc0dc2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4dc0dc2

Please sign in to comment.