Skip to content

Commit

Permalink
move downloaded .whl files to dist/ where twine can find them
Browse files Browse the repository at this point in the history
  • Loading branch information
anthrotype committed Dec 11, 2020
1 parent 9bea1ef commit d80bf39
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,14 @@ jobs:
- name: Download artifacts from build jobs
uses: actions/download-artifact@v2
with:
path: dist/
- name: Check all artifacts were downloaded
run: ls dist/*
path: wheelhouse/
- name: Move wheels to dist/ directory
run: |
ls wheelhouse/*
mkdir -p dist/
for wheel_dir in wheelhouse/skia_pathops*/; do
mv "${wheel_dir}"/*.whl dist/
done
- name: Extract release notes from annotated tag message
id: release_notes
env:
Expand Down

0 comments on commit d80bf39

Please sign in to comment.