Skip to content

Commit

Permalink
Test creating sdist for projects, not the root metapackage
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Apr 13, 2024
1 parent bbad2d7 commit 69d7447
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,15 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- uses: jupyterlab/maintainer-tools/.github/actions/make-sdist@v1
- name: Build SDist
shell: bash
run: |
pip install build
find projects/* -maxdepth 0 -type d | xargs -L 1 -P 4 python -m build --sdist --outdir dist/
- uses: actions/upload-artifact@v3
with:
name: "sdist"
path: dist/*.tar.gz

test_sdist:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 69d7447

Please sign in to comment.