diff --git a/.github/workflows/publish-book.yml b/.github/workflows/publish-book.yml index 121f8453..ab994d9c 100644 --- a/.github/workflows/publish-book.yml +++ b/.github/workflows/publish-book.yml @@ -34,16 +34,18 @@ jobs: uses: ./.github/actions/setup with: force_env_update: 'false' - - - name: Cache Jupyter Build Artifacts - uses: actions/cache@v3 - with: - path: | - ./book/_build/html/ - ./.jupyter_cache - key: ${{ runner.os }}-jupyter-${{ hashFiles('**/*.ipynb') }} - restore-keys: | - ${{ runner.os }}-jupyter- + + # Cache not currently working. May conflict with Cache in setup + # Unsure if the cache in setup works properly either + # - name: Cache Jupyter Build Artifacts + # uses: actions/cache@v3 + # with: + # path: | + # ./book/_build/html/ + # ./.jupyter_cache + # key: ${{ runner.os }}-jupyter-${{ hashFiles('**/*.ipynb') }} + # restore-keys: | + # ${{ runner.os }}-jupyter- - name: Build student book run: |