Skip to content

Commit 9bdfd04

Browse files
authored
ci: fix artifacts v4 with multiple uploads (#331)
1 parent 6aa4d58 commit 9bdfd04

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build-rtc.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797

9898
- uses: actions/upload-artifact@v4
9999
with:
100-
name: rtc-release
100+
name: rtc-release-${{ matrix.os }}
101101
path: livekit-rtc/dist/*.whl
102102

103103
make_sdist:
@@ -118,7 +118,7 @@ jobs:
118118
119119
- uses: actions/upload-artifact@v4
120120
with:
121-
name: rtc-release
121+
name: rtc-release-sdist
122122
path: livekit-rtc/dist/*.tar.gz
123123

124124
publish:
@@ -131,8 +131,9 @@ jobs:
131131
steps:
132132
- uses: actions/download-artifact@v4
133133
with:
134-
name: rtc-release
134+
pattern: rtc-release-*
135135
path: dist
136+
merge-multiple: true
136137

137138
- uses: pypa/gh-action-pypi-publish@release/v1
138139
with:

0 commit comments

Comments
 (0)