From 4dc0dc25e5f03c0c0064f5026d4b8b2eae2daa11 Mon Sep 17 00:00:00 2001 From: Geevarghese George Date: Sat, 19 Aug 2023 21:59:12 +0000 Subject: [PATCH] Add Makefile (#24) * Update deploy-gh-pages.yml * Create Makefile --- .github/workflows/deploy-gh-pages.yml | 2 +- Makefile | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 Makefile 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