Skip to content

⬆️ Bump dawidd6/action-download-artifact from 2 to 6 (#255) #677

⬆️ Bump dawidd6/action-download-artifact from 2 to 6 (#255)

⬆️ Bump dawidd6/action-download-artifact from 2 to 6 (#255) #677

Workflow file for this run

name: Build Project [using jupyter-book]
on: [push]
jobs:
preview:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Anaconda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
auto-activate-base: true
miniconda-version: 'latest'
python-version: 3.9
environment-file: environment.yml
activate-environment: lecture-datascience
- name: Display Conda Environment Versions
shell: bash -l {0}
run: conda list
- name: Display Pip Versions
shell: bash -l {0}
run: pip list
- name: Download "build" folder (cache)
uses: dawidd6/action-download-artifact@v6
with:
workflow: cache.yml
branch: main
name: build-cache
path: _build
- name: Build HTML
shell: bash -l {0}
run: |
jb build lectures --path-output ./ -W --keep-going
- name: Upload Execution Reports
uses: actions/upload-artifact@v4
if: failure()
with:
name: execution-reports
path: _build/html/reports
- name: Build Download Notebooks (sphinx-tojupyter)
shell: bash -l {0}
run: |
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter
mkdir -p _build/html/_notebooks
rsync -r _build/jupyter/ _build/html/_notebooks/
- name: Copy Data Assets for Deployment
shell: bash -l {0}
run: |
mkdir -p _build/html/assets/data
cp -a lectures/_data/. _build/html/assets/data/
- name: Preview Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: '_build/html/'
production-branch: master
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Preview Deploy from GitHub Actions"
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}