Skip to content

Commit 3f683b4

Browse files
committed
ci : fix arm upload artifacts
1 parent 5fa07c2 commit 3f683b4

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,12 @@ jobs:
175175
ubuntu-cpu-cmake:
176176
strategy:
177177
matrix:
178-
os: [ubuntu-22.04, ubuntu-22.04-arm]
178+
include:
179+
- build: 'x64'
180+
os: ubuntu-22.04
181+
- build: 'arm64'
182+
os: ubuntu-22.04-arm
183+
179184
runs-on: ${{ matrix.os }}
180185

181186
steps:
@@ -248,8 +253,8 @@ jobs:
248253
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
249254
uses: actions/upload-artifact@v4
250255
with:
251-
path: llama-${{ steps.tag.outputs.name }}-bin-ubuntu-x64.zip
252-
name: llama-bin-ubuntu-x64.zip
256+
path: llama-${{ steps.tag.outputs.name }}-bin-ubuntu-${{ matrix.build }}.zip
257+
name: llama-bin-ubuntu-${{ matrix.build }}.zip
253258

254259
ubuntu-latest-cmake-sanitizer:
255260
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)