Skip to content

Commit

Permalink
Moved all wheels to dist folder and delete original folder (#858)
Browse files Browse the repository at this point in the history
# Description


## Type of change
- [ ] Bug fix & code cleanup
- [ ] New feature
- [ ] Documentation update
- [ ] Test update

## Checklist for the reviewer
This checklist should be used as a help for the reviewer.

- [ ] Is the change limited to one issue?
- [ ] Does this PR close the issue?
- [ ] Is the code easy to read and understand?
- [ ] Do all new feature have an accompanying new test?
- [ ] Has the documentation been updated as necessary?
  • Loading branch information
francescalb authored Jun 21, 2024
2 parents 9f1b274 + f9c040c commit e7ff948
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cd_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,11 +241,12 @@ jobs:
with:
path: dist

- name: Move sdist files to dist/m wheel files already there
- name: Move sdists and wheels to dist and remove all directories
run: |
ls -lah dist
mv dist/sdist_____/* dist/
rm -rf dist/sdist_____
mv dist/wheels*/* dist/
find . -mindepth 1 -maxdepth 1 -type d -exec rm -rf {} +
ls -lah dist
# - name: Publish package to Test PyPI
Expand Down

0 comments on commit e7ff948

Please sign in to comment.