Skip to content

Commit

Permalink
force test publish deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
IamShubhamGupto committed Feb 24, 2024
1 parent e34c0d0 commit 933a032
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: 📦 Cache Notebooks
uses: actions/cache@v2
with:
path: _build/.jupyter_cache
path: src/_build/.jupyter_cache
key: notebook_cache-${{hashFiles('_toc.yml', '_config.yml', 'environment.yml') }}
- name: 📖 Build the book
shell: bash -l {0}
Expand All @@ -53,13 +53,13 @@ jobs:
- name: 📖 Show logs from the book build
shell: bash -l {0}
run: |
find _build/html -name "*.log" -print -exec cat {} \;
find src/_build/html -name "*.log" -print -exec cat {} \;
- name: 🚀 Deploy to GitHub Pages
# redudant but keeping for testing purposes
if: github.ref == 'refs/heads/main'
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/html
publish_dir: src/_build/html
keep_files: false
force_orphan: true

0 comments on commit 933a032

Please sign in to comment.