diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4cb8995..93b20fd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -57,14 +57,14 @@ jobs: # Install requirements.txt - name: Install requirements run: | - pip install -r jupyter_cookie/requirements.txt + pip install -r my_book/requirements.txt # Build the example book - name: Build book run: | - jupyter-book build jupyter_cookie/jupyter_cookie/ + jupyter-book build my_book/my_book/ # Deploy html to gh-pages - name: GitHub Pages action uses: peaceiris/actions-gh-pages@v3.6.1 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: jupyter_cookie/jupyter_cookie//_build/html \ No newline at end of file + publish_dir: my_book/my_book/_build/html \ No newline at end of file diff --git a/README.md b/README.md index 5d27e54..dcaf41c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ cookiecutter git@github.com:UBC-MDS/cookiecutter-jupyter-book.git full_name [Captain Planet]: Tomas Beuzen github_username [tomasbeuzen]: -book_name [jupyter-cookie]: my-book +book_name [my-book]: book_slug [my_book]: book_short_description [This cookiecutter creates a simple boilerplate for a Jupyter Book.]: My first Jupyter Book! version ['0.1.0']: diff --git a/cookiecutter.json b/cookiecutter.json index f39d80d..5552484 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -1,7 +1,7 @@ { "full_name": "Captain Planet", "github_username": "{{ cookiecutter.full_name.lower().replace(' ', '') }}", - "book_name": "jupyter-cookie", + "book_name": "my-book", "book_slug": "{{ cookiecutter.book_name.lower().replace(' ', '_').replace('-', '_') }}", "book_short_description": "This cookiecutter creates a simple boilerplate for a Jupyter Book.", "version": "'0.1.0'",