Skip to content

Commit 4ef287b

Browse files
committed
Fixed CI artifact name conflicts and added node version to job names
upload-artifact@v7 requires unique artifact names across the workflow.
1 parent a9075a8 commit 4ef287b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
node: 24
4444
host: arm64
4545
target: arm64
46-
name: ${{ matrix.os }} (host=${{ matrix.host }}, target=${{ matrix.target }})
46+
name: ${{ matrix.os }} (node=${{ matrix.node }}, host=${{ matrix.host }}, target=${{ matrix.target }})
4747
steps:
4848
- uses: actions/checkout@v6
4949
- uses: actions/setup-node@v6
@@ -99,7 +99,7 @@ jobs:
9999
uses: actions/upload-artifact@v7
100100
if: matrix.node == 24
101101
with:
102-
name: prebuilt-binaries
102+
name: prebuilt-binaries-${{ matrix.os }}-${{ matrix.target }}
103103
path: prebuilds/*
104104
retention-days: 7
105105

@@ -153,7 +153,7 @@ jobs:
153153
uses: actions/upload-artifact@v7
154154
if: matrix.node == 24
155155
with:
156-
name: prebuilt-binaries
156+
name: prebuilt-binaries-${{ matrix.variant }}-${{ matrix.target }}
157157
path: prebuilds/*
158158
retention-days: 7
159159

0 commit comments

Comments
 (0)