Update validate.yml - uses Runner os and arch for artifact names

This commit is contained in:
LT_SCHMIDDY 2025-11-24 20:48:45 -05:00 committed by GitHub
parent 58bccbd47c
commit 55e2f06f56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,7 +55,7 @@ jobs:
if: runner.os != 'Windows' if: runner.os != 'Windows'
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: N64Recomp-${{ matrix.os }}-${{ matrix.type }} name: N64Recomp-${{ runner.os }}-${{ runner.arch }}-${{ matrix.type }}
path: | path: |
./cmake-build/LiveRecompTest ./cmake-build/LiveRecompTest
./cmake-build/N64Recomp ./cmake-build/N64Recomp
@ -74,7 +74,7 @@ jobs:
if: runner.os == 'Windows' if: runner.os == 'Windows'
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: N64Recomp-${{ matrix.os }}-${{ matrix.type }} name: N64Recomp-${{ runner.os }}-${{ runner.arch }}-${{ matrix.type }}
path: | path: |
./cmake-build/LiveRecompTest.exe ./cmake-build/LiveRecompTest.exe
./cmake-build/N64Recomp.exe ./cmake-build/N64Recomp.exe