We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b843dab commit e0fe6cfCopy full SHA for e0fe6cf
1 file changed
.github/workflows/linux.yml
@@ -34,15 +34,8 @@ jobs:
34
id: get_commit_hash
35
run: echo "hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
36
37
- - name: Create GitHub Release
38
- uses: softprops/action-gh-release@v2
39
- env:
40
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Upload Linux wheels
+ uses: actions/upload-artifact@v4
41
with:
42
- files: |
43
- wheelhouse/octdata4python-0.1.0-cp310-cp310-manylinux_2_39_x86_64.whl
44
- wheelhouse/octdata4python-0.1.0-cp311-cp311-manylinux_2_39_x86_64.whl
45
- wheelhouse/octdata4python-0.1.0-cp312-cp312-manylinux_2_39_x86_64.whl
46
- body: Release created automatically from workflow.
47
- draft: true
48
- tag_name: ${{ steps.get_commit_hash.outputs.hash }}
+ name: linux-wheels
+ path: wheelhouse/*.whl
0 commit comments