From 1647fd82e901f66e3ca00fae2688fd31fe238149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sun, 18 Feb 2024 13:42:53 +0300 Subject: [PATCH] fix(cd): avoid creating artifacts with the same name https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md --- .github/workflows/cd.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index b108c24646..d2e2234a40 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -285,8 +285,8 @@ jobs: - name: Upload Python wheels uses: actions/upload-artifact@v4 with: + name: "wheels-${{ matrix.build.TARGET }}" working-directory: pypi - name: wheels path: pypi/wheels publish-npm: @@ -320,7 +320,8 @@ jobs: - uses: actions/download-artifact@v4 with: path: pypi/wheels - name: wheels + pattern: wheels-* + merge-multiple: true - name: Publish to PyPI uses: PyO3/maturin-action@v1 env: