Skip to content

Commit

Permalink
change default book name
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasBeuzen committed Aug 14, 2020
1 parent 34c0b38 commit 1878a1c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Expand Up @@ -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
publish_dir: my_book/my_book/_build/html
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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']:
Expand Down
2 changes: 1 addition & 1 deletion 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'",
Expand Down

0 comments on commit 1878a1c

Please sign in to comment.