Skip to content

Commit f385423

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

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,11 @@ 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
179183
runs-on: ${{ matrix.os }}
180184

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

254258
ubuntu-latest-cmake-sanitizer:
255259
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)