78
78
if : ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
79
79
uses : actions/upload-artifact@v4
80
80
with :
81
- path : |
82
- llama-${{ steps.tag.outputs. name }} -bin-macos-arm64.zip
81
+ path : llama-${{ steps.tag.outputs.name }}-bin-macos-arm64.zip
82
+ name : llama -bin-macos-arm64.zip
83
83
84
84
macOS-latest-cmake-x64 :
85
85
runs-on : macos-latest
@@ -134,8 +134,8 @@ jobs:
134
134
if : ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
135
135
uses : actions/upload-artifact@v4
136
136
with :
137
- path : |
138
- llama-${{ steps.tag.outputs. name }} -bin-macos-x64.zip
137
+ path : llama-${{ steps.tag.outputs.name }}-bin-macos-x64.zip
138
+ name : llama -bin-macos-x64.zip
139
139
140
140
ubuntu-focal-make :
141
141
runs-on : ubuntu-20.04
@@ -725,8 +725,8 @@ jobs:
725
725
if : ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
726
726
uses : actions/upload-artifact@v4
727
727
with :
728
- path : |
729
- llama-${{ steps.tag.outputs. name }} -bin-win-${{ matrix.build }}-x64.zip
728
+ path : llama-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-x64.zip
729
+ name : llama -bin-win-${{ matrix.build }}-x64.zip
730
730
731
731
windows-latest-cmake-cuda :
732
732
runs-on : windows-latest
@@ -781,8 +781,8 @@ jobs:
781
781
if : ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
782
782
uses : actions/upload-artifact@v4
783
783
with :
784
- path : |
785
- llama-${{ steps.tag.outputs.name }}- bin-win-${{ matrix.build }} -cu${{ matrix.cuda }}-x64.zip
784
+ path : llama-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-cu${{ matrix.cuda }}-x64.zip
785
+ name : llama-bin-win-cu${{ matrix.cuda }}-x64.zip
786
786
787
787
- name : Copy and pack Cuda runtime
788
788
run : |
@@ -795,8 +795,8 @@ jobs:
795
795
if : ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
796
796
uses : actions/upload-artifact@v4
797
797
with :
798
- path : |
799
- cudart-llama-bin-win-cu${{ matrix.cuda }}-x64.zip
798
+ path : cudart-llama-bin-win-cu${{ matrix.cuda }}-x64.zip
799
+ name : cudart-llama-bin-win-cu${{ matrix.cuda }}-x64.zip
800
800
801
801
windows-latest-cmake-sycl :
802
802
runs-on : windows-latest
@@ -846,8 +846,8 @@ jobs:
846
846
if : ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
847
847
uses : actions/upload-artifact@v4
848
848
with :
849
- path : |
850
- llama-${{ steps.tag.outputs. name }} -bin-win-sycl-x64.zip
849
+ path : llama-${{ steps.tag.outputs.name }}-bin-win-sycl-x64.zip
850
+ name : llama -bin-win-sycl-x64.zip
851
851
852
852
ios-xcode-build :
853
853
runs-on : macos-latest
0 commit comments