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