Skip to content

Commit

Permalink
Properly fix src/wheel distribution upload/download
Browse files Browse the repository at this point in the history
  • Loading branch information
alisaifee committed Nov 27, 2024
1 parent 16eb669 commit 74a49c0
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,11 @@ jobs:
steps:
- uses: actions/download-artifact@v4.1.7
with:
name: artifact
name: wheels
path: dist
- uses: actions/download-artifact@v4.1.7
with:
name: src_dist
path: dist

- uses: pypa/gh-action-pypi-publish@v1.4.2
Expand All @@ -147,10 +151,15 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Download artifacts
- name: Download wheels
uses: actions/download-artifact@v4.1.7
with:
name: artifact
name: wheels
path: dist
- name: Download src dist
uses: actions/download-artifact@v4.1.7
with:
name: src_dist
path: dist
- name: Generate release notes
run: |
Expand Down

0 comments on commit 74a49c0

Please sign in to comment.