File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -286,7 +286,7 @@ jobs:
286
286
asset_name : ${{ steps.find_wheel_unix.outputs.wheel_name }}
287
287
asset_content_type : application/zip
288
288
289
- - name : Upload Release Asset (Windows)
289
+ - name : Upload Wheel Release Asset (Windows)
290
290
if : runner.os == 'Windows'
291
291
uses : actions/upload-release-asset@v1
292
292
env :
@@ -295,4 +295,14 @@ jobs:
295
295
upload_url : ${{ needs.create_release.outputs.upload_url }}
296
296
asset_path : ${{ steps.find_wheel_windows.outputs.wheel_path }}
297
297
asset_name : ${{ steps.find_wheel_windows.outputs.wheel_name }}
298
- asset_content_type : application/zip
298
+ asset_content_type : application/zip
299
+
300
+ - name : Upload Build Release Asset
301
+ uses : actions/upload-release-asset@v1
302
+ env :
303
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
304
+ with :
305
+ upload_url : ${{ needs.create_release.outputs.upload_url }}
306
+ asset_path : ${{ steps.strings-unix.outputs.build-output-dir }}/*.pccl.*
307
+ asset_name : libpccl-${{ runner.os }}-${{ matrix.build_type }}-${{ matrix.pccl_build_cuda_support == 'ON' && 'cuda' || 'nocuda' }}-${{ matrix.is_host_arch && 'host' || 'cross' }}.zip
308
+ asset_content_type : application/zip
You can’t perform that action at this time.
0 commit comments