File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 47
47
run : python -m build
48
48
49
49
- name : Upload distribution package
50
- uses : actions/upload-artifact@v3
50
+ uses : actions/upload-artifact@v4
51
51
with :
52
52
name : ${{ inputs.artifact_name }}
53
53
path : " ${{ startsWith(inputs.package, 'livekit-plugin') && 'livekit-plugins/' || '' }}${{ inputs.package }}/dist/"
82
82
CIBW_BUILD_VERBOSITY : 3
83
83
84
84
- name : Upload distribution package
85
- uses : actions/upload-artifact@v3
85
+ uses : actions/upload-artifact@v4
86
86
with :
87
87
name : ${{ inputs.artifact_name }}
88
88
path : livekit-plugins/livekit-plugins-browser/dist/
Original file line number Diff line number Diff line change 27
27
submodules : true
28
28
lfs : true
29
29
env :
30
- GITHUB_TOKEN : ${{ secrets.CHANGESETS_PUSH_PAT }}
30
+ GITHUB_TOKEN : ${{ secrets.CHANGESETS_PUSH_DEPLOY_KEY }}
31
31
32
32
- uses : pnpm/action-setup@v4
33
33
- name : Use Node.js 20
84
84
uses : livekit/agents/.github/workflows/build-package.yml@main
85
85
with :
86
86
package : ${{ matrix.package.name }}
87
- artifact_name : python-package-distributions
87
+ artifact_name : python-package-dist-${{matrix.package.name}}
88
88
89
89
publish :
90
90
needs :
@@ -96,10 +96,11 @@ jobs:
96
96
97
97
steps :
98
98
- name : Download all the dists
99
- uses : actions/download-artifact@v3
99
+ uses : actions/download-artifact@v4
100
100
with :
101
- name : python-package-distributions
102
- path : dist/
101
+ path : dist
102
+ pattern : python-package-dist-*
103
+ merge-multiple : true
103
104
104
105
- name : Publish package
105
106
uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
You can’t perform that action at this time.
0 commit comments