Skip to content

Commit 5e83f8f

Browse files
committed
V5.0.0
1 parent 90238de commit 5e83f8f

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,11 @@ jobs:
3636
poetry run python build.py
3737
poetry build
3838
39-
- name: Rename artifacts with Python version
39+
- name: Copy artifacts
4040
run: |
4141
mkdir -p dist-py${{ matrix.python-version }}
4242
cp dist/*.whl dist-py${{ matrix.python-version }}/
4343
cp dist/*.tar.gz dist-py${{ matrix.python-version }}/
44-
# Rename wheel to include Python version
45-
cd dist-py${{ matrix.python-version }}
46-
for file in *.whl; do
47-
if [[ "$file" != *"py${{ matrix.python-version }}"* ]]; then
48-
mv "$file" "${file%.whl}-py${{ matrix.python-version }}.whl"
49-
fi
50-
done
5144
5245
- name: Upload Python ${{ matrix.python-version }} artifacts
5346
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)