Browse Source

Fix typo: *manylinux*.whl ⇒ *-manylinux.whl

Jelmer Vernooij 2 years ago
parent
commit
1dc6d79975
1 changed files with 3 additions and 3 deletions
  1. 3 3
      .github/workflows/pythonwheels.yml

+ 3 - 3
.github/workflows/pythonwheels.yml

@@ -69,12 +69,12 @@ jobs:
         if: "matrix.os == 'ubuntu-latest'"
       - name: Upload wheels (Linux)
         uses: actions/upload-artifact@v2
-        # Only include *manylinux* wheels; the other wheels files are built but
-        # rejected by pip.
+        # Only include *-manylinux* wheels; the other wheels files are built but
+        # rejected by pip (unsupported platform tag)
         if: "matrix.os == 'ubuntu-latest'"
         with:
           name: dist
-          path: dist/*manylinux*.whl
+          path: dist/*-manylinux*.whl
       - name: Upload wheels (non-Linux)
         uses: actions/upload-artifact@v2
         with: