File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ jobs:
219
219
- name : Generate pip install commands for release body
220
220
run : |
221
221
cat > body.md << 'ENDOFMARKDOWN'
222
- ## Latest `main` Wheel Pre -release
222
+ ## Latest `main` pre -release wheel
223
223
224
224
This pre-release contains the latest development wheels for all supported platforms, rebuilt automatically on every commit to the `main` branch.
225
225
@@ -231,6 +231,17 @@ jobs:
231
231
for whl in wheels/*.whl; do
232
232
fname=$(basename "$whl")
233
233
url="https://github.com/bitsandbytes-foundation/bitsandbytes/releases/download/continuous-release_main/$fname"
234
+
235
+ if [[ "$fname" == *"manylinux_2_24_x86_64"* ]]; then
236
+ echo "### Linux (x86_64)" >> body.md
237
+ elif [[ "$fname" == *"manylinux_2_24_aarch64"* ]]; then
238
+ echo "### Linux (ARM/aarch64)" >> body.md
239
+ elif [[ "$fname" == *"win_amd64"* ]]; then
240
+ echo "### Windows (x86_64)" >> body.md
241
+ else
242
+ echo "### Other platform" >> body.md
243
+ fi
244
+
234
245
echo "\`\`\`sh" >> body.md
235
246
echo "pip install $url" >> body.md
236
247
echo "\`\`\`" >> body.md
You can’t perform that action at this time.
0 commit comments