From 769f085018e77f31cb17a1574056271d079a1e2d Mon Sep 17 00:00:00 2001 From: aoife cassidy Date: Mon, 16 Dec 2024 12:03:57 +0200 Subject: [PATCH] ci: fix artifacts v4 with multiple uploads --- .github/workflows/build-rtc.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-rtc.yml b/.github/workflows/build-rtc.yml index 5996e42b..093fb39b 100644 --- a/.github/workflows/build-rtc.yml +++ b/.github/workflows/build-rtc.yml @@ -97,7 +97,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: rtc-release + name: rtc-release-${{ matrix.os }} path: livekit-rtc/dist/*.whl make_sdist: @@ -118,7 +118,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: rtc-release + name: rtc-release-sdist path: livekit-rtc/dist/*.tar.gz publish: @@ -131,8 +131,9 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: rtc-release + pattern: rtc-release-* path: dist + merge-multiple: true - uses: pypa/gh-action-pypi-publish@release/v1 with: