From 03ff9777cc42d4eff5696948b7329ee45d231522 Mon Sep 17 00:00:00 2001 From: Andrii Penechko Date: Sun, 26 May 2024 20:43:17 +0300 Subject: [PATCH] Update CI --- .github/workflows/ci.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9fce351..898b68b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,8 @@ jobs: 7z a -mx9 vox-${{matrix.PLATFORM}}.zip ${{matrix.EXE}} - uses: actions/upload-artifact@v4 with: - path: ./bin/vox-${{matrix.PLATFORM}}.zip + name: artifact-${{matrix.PLATFORM}} + path: bin/ build-debug: name: Build CLI debug runs-on: ${{ matrix.os }} @@ -98,7 +99,8 @@ jobs: 7z a -mx9 vox-${{matrix.PLATFORM}}-dbg.zip ${{matrix.EXE}} ${{matrix.DBG_FILE}} - uses: actions/upload-artifact@v4 with: - path: ./bin/vox-${{matrix.PLATFORM}}-dbg.zip + name: artifact-vox-${{matrix.PLATFORM}}-dbg + path: bin/ build-shared: name: Build shared runs-on: ${{ matrix.os }} @@ -130,7 +132,8 @@ jobs: 7z a -mx9 libvox-${{matrix.PLATFORM}}.zip ${{matrix.DLL}} ${{matrix.LIB}} - uses: actions/upload-artifact@v4 with: - path: ./bin/libvox-${{matrix.PLATFORM}}.zip + name: artifact-libvox-${{matrix.PLATFORM}} + path: bin/ build-shared-debug: name: Build shared debug runs-on: ${{ matrix.os }} @@ -163,7 +166,8 @@ jobs: 7z a -mx9 libvox-${{matrix.PLATFORM}}-dbg.zip ${{matrix.DLL}} ${{matrix.LIB}} ${{matrix.DBG_FILE}} - uses: actions/upload-artifact@v4 with: - path: ./bin/libvox-${{matrix.PLATFORM}}-dbg.zip + name: artifact-libvox-${{matrix.PLATFORM}}-dbg + path: bin/ upload: name: Upload build if: github.event_name != 'pull_request'