Skip to content

Commit

Permalink
CI: portability
Browse files Browse the repository at this point in the history
  • Loading branch information
pajod committed Dec 12, 2023
1 parent c20a3db commit d4bc146
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,12 @@ jobs:
# (cd source/ && python -m build --sdist)
# all:
python -m build
mkdir --verbose --parents upload
cp --verbose --archive dist/*{.tar.gz,.whl} upload/
# mac does not like the --parent --verbose long forms
mkdir -p upload
# windows does not like the {.a,.b} shorthands
# windows doe not do --archive --verbose on cp
cp dist/*.tar.gz upload/
cp dist/*.whl upload/
- uses: actions/upload-artifact@v3
with:
path: upload
Expand Down

0 comments on commit d4bc146

Please sign in to comment.