Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include sdist in release artifacts #107

Merged
merged 2 commits into from
Nov 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,16 @@ jobs:
python-version: '3.10'
- name: Build wheels
run: pip wheel . -w dist
- name: Build Source Dist
run: python setup.py sdist
- uses: actions/upload-artifact@v3
with:
name: artifacts
name: wheel
path: ./dist/dask_glm*
- uses: actions/upload-artifact@v3
with:
name: sdist
path: ./dist/dask-glm*

list_artifacts:
name: List build artifacts
Expand All @@ -38,7 +44,11 @@ jobs:
steps:
- uses: actions/download-artifact@v3
with:
name: artifacts
name: sdist
path: dist
- uses: actions/download-artifact@v3
with:
name: wheel
path: dist
- name: test
run: |
Expand All @@ -57,7 +67,11 @@ jobs:
steps:
- uses: actions/download-artifact@v3
with:
name: artifacts
name: sdist
path: dist
- uses: actions/download-artifact@v3
with:
name: wheel
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
Loading