From 08ae3519912241f53a937514d954c7b20c10b327 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Wed, 27 Mar 2024 19:13:52 +0100 Subject: [PATCH] Upload all wheels from correct path Upload wheels from the connectedhomeip directory which is now where the Matter SDK lives. This makes sure that wheel builds for macOS are available as well. --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3b1f444..84746c9 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -142,7 +142,7 @@ jobs: uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: - files: project-chip/out/controller/python/*.whl + files: ./connectedhomeip/out/controller/python/*.whl - name: Upload wheels to PyPI if: startsWith(github.ref, 'refs/tags/') env: @@ -229,7 +229,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: chip-wheels-macosx-${{ matrix.arch.name }} - path: project-chip/out/controller/python/*.whl + path: ./connectedhomeip/out/controller/python/*.whl - name: Upload wheels as release assets uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/')