Skip to content

Commit

Permalink
Also build notebook on extra
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Nov 5, 2024
1 parent 25ee59a commit 0664d4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable_build_and_upload_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,15 +227,15 @@ jobs:

- name: "Build rerun_notebook"
# only build the notebook if we are building for pypi and running linux-x64
if: ${{ inputs.MODE == 'pypi' && inputs.PLATFORM == 'linux-x64' }}
if: ${{ (inputs.MODE == 'pypi' || inputs.MODE == 'extra') && inputs.PLATFORM == 'linux-x64' }}
run: |
rm -rf dist
pixi run js-build-base
pixi run python scripts/ci/build_and_upload_rerun_notebook.py \
--dir commit/${{ steps.get-sha.outputs.sha }}/wheels
- name: Save rerun_notebook wheel artifact
if: ${{ inputs.MODE == 'pypi' && inputs.PLATFORM == 'linux-x64' }}
if: ${{ (inputs.MODE == 'pypi' || inputs.MODE == 'extra') && inputs.PLATFORM == 'linux-x64' }}
uses: actions/upload-artifact@v4
with:
name: rerun_notebook_wheel
Expand Down

0 comments on commit 0664d4f

Please sign in to comment.