From 875904e74b6af7caf418fd5d55c4ad8e1bf1b223 Mon Sep 17 00:00:00 2001 From: Angus Hollands Date: Wed, 1 Nov 2023 20:06:10 +0000 Subject: [PATCH] ci: remove redundant configure step --- .github/workflows/deploy.yml | 8 ++------ {{cookiecutter.book_slug}}/.github/workflows/deploy.yml | 8 ++------ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2945b1f..e158179 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -42,15 +42,11 @@ jobs: run: | jupyter-book build . - # Setup for GitHub Pages deployment - - name: Setup Pages - uses: actions/configure-pages@v3 - # Upload the book's HTML as an artifact (optional) - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v2 with: - path: "./_build/html" + path: "_build/html" # Deploy the book's HTML to GitHub Pages - name: Deploy to GitHub Pages diff --git a/{{cookiecutter.book_slug}}/.github/workflows/deploy.yml b/{{cookiecutter.book_slug}}/.github/workflows/deploy.yml index dd97cb6..184fa5a 100644 --- a/{{cookiecutter.book_slug}}/.github/workflows/deploy.yml +++ b/{{cookiecutter.book_slug}}/.github/workflows/deploy.yml @@ -42,15 +42,11 @@ jobs: run: | jupyter-book build . - # Setup for GitHub Pages deployment - - name: Setup Pages - uses: actions/configure-pages@v3 - # Upload the book's HTML as an artifact (optional) - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v2 with: - path: "./_build/html" + path: "_build/html" # Deploy the book's HTML to GitHub Pages - name: Deploy to GitHub Pages