Skip to content

Commit

Permalink
Fix PyPI wheel upload (no artifact download dirs) (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
smheidrich authored Sep 21, 2022
1 parent 09109c2 commit bcdf930
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-and-prelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,11 @@ jobs:
- name: Download all wheel artifacts
uses: actions/download-artifact@v3
with:
path: dist
path: downloaded
- name: Move wheel artifacts
run: |
cd dist && mv */*.whl ./
mkdir dist
mv downloaded/*/*.whl dist/
- name: Publish as GitHub pre-release
uses: "marvinpinto/action-automatic-releases@latest"
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,11 @@ jobs:
- name: Download all wheel artifacts
uses: actions/download-artifact@v3
with:
path: dist
path: downloaded
- name: Move wheel artifacts
run: |
cd dist && mv */*.whl ./
mkdir dist
mv downloaded/*/*.whl dist/
- name: Publish as GitHub release
uses: "marvinpinto/action-automatic-releases@latest"
with:
Expand Down

0 comments on commit bcdf930

Please sign in to comment.