Skip to content

Commit 0095a63

Browse files
committed
Build: Fix wheel release step.
1 parent 463d5b1 commit 0095a63

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.github/workflows/wheels.yml

+12-8
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
- uses: actions/upload-artifact@v3
121121
with:
122122
path: ./wheelhouse/*.whl
123-
name: lxml-wheels
123+
name: wheels-${{ matrix.os }}
124124

125125
upload_release_assets:
126126
name: Upload Release Assets
@@ -133,16 +133,20 @@ jobs:
133133

134134
steps:
135135
- name: Download bdist files
136-
id: download_artifact
137-
uses: actions/download-artifact@v4
136+
uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
138137
with:
139-
name: lxml-wheels
140-
path: ~/downloads
138+
path: ./bdist_downloads
139+
merge-multiple: true
141140

142141
- name: List downloaded artifacts
143-
run: ls -la ~/downloads
142+
run: ls -la ./bdist_downloads
143+
144+
- uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
145+
with:
146+
path: ./bdist_downloads/*.whl
147+
name: wheels
144148

145149
- name: Release
146-
uses: softprops/action-gh-release@v2
150+
uses: softprops/action-gh-release@v1
147151
with:
148-
files: ~/downloads/*.whl
152+
files: ./bdist_downloads/*.whl

0 commit comments

Comments
 (0)