Skip to content

Commit

Permalink
ci: remove redundant configure step
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Nov 1, 2023
1 parent debcfd6 commit 875904e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 2 additions & 6 deletions {{cookiecutter.book_slug}}/.github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 875904e

Please sign in to comment.