diff --git a/.github/workflows/build_check_deploy_gh_pages.yml b/.github/workflows/build_check_deploy_gh_pages.yml index b9f9baf8..a5a26054 100644 --- a/.github/workflows/build_check_deploy_gh_pages.yml +++ b/.github/workflows/build_check_deploy_gh_pages.yml @@ -60,6 +60,13 @@ jobs: npm run lint npm run export + - name: generate and export book + run: | + cd new-website + cd utils/tutorials + python3 build_pdf_book.py + aws s3 cp ./dist/ s3://deepchem-book/storage/--recursive --follow-symlinks + # Run the deploy action only if the push is to the main branch - name: Deploy 🚀 if: ${{ github.ref == 'refs/heads/main' }}