From 87fad2e019bafa7a7453252757c5844e9e5ebc82 Mon Sep 17 00:00:00 2001 From: David Lippert <8987916+david-lippert@users.noreply.github.com> Date: Tue, 21 May 2024 17:45:29 -0400 Subject: [PATCH] Update deploy-book.yml --- .github/workflows/deploy-book.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-book.yml b/.github/workflows/deploy-book.yml index 30a59a0..97598d0 100644 --- a/.github/workflows/deploy-book.yml +++ b/.github/workflows/deploy-book.yml @@ -45,13 +45,13 @@ jobs: # Save the book's HTML contents to the _build directory - name: Build the book run: | - jupyter-book build example-book/ + jupyter-book build fire-101/ # Upload the book's HTML as an artifact - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: - path: "example-book/_build/html" + path: "fire-101/_build/html" # Deploy the book's HTML to GitHub Pages - name: Deploy to GitHub Pages