We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90238de commit 5e83f8fCopy full SHA for 5e83f8f
.github/workflows/workflow.yml
@@ -36,18 +36,11 @@ jobs:
36
poetry run python build.py
37
poetry build
38
39
- - name: Rename artifacts with Python version
+ - name: Copy artifacts
40
run: |
41
mkdir -p dist-py${{ matrix.python-version }}
42
cp dist/*.whl dist-py${{ matrix.python-version }}/
43
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
51
52
- name: Upload Python ${{ matrix.python-version }} artifacts
53
uses: actions/upload-artifact@v4
0 commit comments