Skip to content

Commit c8bba7d

Browse files
committed
fix(ci): make osx release artifacts unique per runner
1 parent baba29e commit c8bba7d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,13 +227,13 @@ jobs:
227227
- name: Build native Apple/OSX command executable
228228
run: |
229229
make apple-osx RELEASE=1
230-
mv cjit.command cjit-Darwin-${{ env.ARCH }}
230+
mv cjit.command cjit-Darwin-${{ matrix.os }}-${{ env.ARCH }}
231231
- name: Upload artifact apple-osx
232232
uses: actions/upload-artifact@v4
233233
with:
234-
name: release-osx-${{ env.ARCH }}
234+
name: release-osx-${{ matrix.os }}-${{ env.ARCH }}
235235
path: |
236-
cjit-Darwin-${{ env.ARCH }}
236+
cjit-Darwin-${{ matrix.os }}-${{ env.ARCH }}
237237
238238
binary-release:
239239
name: 📢 Public release

0 commit comments

Comments
 (0)