From fe67c3c624b109c075165a3383cf1fd795105ba3 Mon Sep 17 00:00:00 2001 From: Bray Moll Date: Tue, 11 Feb 2025 03:09:31 -0700 Subject: [PATCH] fix: Add OS identifier to build artifact names for uniqueness. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aca3e88..d290853 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,11 +39,11 @@ jobs: - name: Rename build binary shell: pwsh - run: Move-Item -Path build/release/flowVC.out -Destination build/release/flowVC.${{ matrix.release_suffix}} + run: Move-Item -Path build/release/flowVC.out -Destination build/release/flowVC_${{ runner.os }}.${{ matrix.release_suffix}} - name: Upload Build Artifact uses: actions/upload-artifact@v4 with: name: flowVC_${{ runner.os }} - path: build/release/flowVC.${{ matrix.release_suffix}} + path: build/release/flowVC_${{ runner.os }}.${{ matrix.release_suffix}} overwrite: true