We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae379fe commit 9755d98Copy full SHA for 9755d98
1 file changed
.github/workflows/build-wheel.yml
@@ -35,9 +35,14 @@ jobs:
35
- name: Build wheel
36
run: python -m build --wheel
37
38
+ - name: Get wheel filename
39
+ id: get_filename
40
+ run: |
41
+ echo "whl_file=$(ls dist/*.whl)" >> $GITHUB_OUTPUT
42
+
43
- name: Upload wheel artifact
44
uses: actions/upload-artifact@v4
45
with:
- name: python-wheel
- path: dist/*.whl # Upload all .whl files from the 'dist' directory
-
46
+ name: ${{ steps.get_filename.outputs.whl_file }}
47
+ path: ${{ steps.get_filename.outputs.whl_file }}
48
+ if-no-files-found: error
0 commit comments