瀏覽代碼

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

Jelmer Vernooij 2 年之前
父節點
當前提交
1dc6d79975
共有 1 個文件被更改,包括 3 次插入3 次删除
  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: