Skip to content

Commit

Permalink
No clash with artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Mar 3, 2025
1 parent 9786576 commit 32dd13b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,21 +130,21 @@ jobs:
ctest -C ${{ matrix.build_type }}
- name: Upload Artifact - Linux
if: matrix.os == 'ubuntu-latest' && matrix.staticcompile == 'ON'
if: matrix.os == 'ubuntu-latest' && matrix.staticcompile == 'ON' && matrix.c_compiler == 'clang'
uses: actions/upload-artifact@v4
with:
name: cryptominisat5-linux-amd64
path: cryptominisat/cryptominisat5

- name: Upload Artifact - Mac
if: matrix.os == 'macos-13' && matrix.staticcompile == 'ON'
if: matrix.os == 'macos-13' && matrix.staticcompile == 'ON' && matrix.c_compiler == 'clang'
uses: actions/upload-artifact@v4
with:
name: cryptominisat5-mac-amd64
path: cryptominisat/cryptominisat5

- name: Upload Artifact - Windows
if: matrix.os == 'windows-2022' && matrix.staticcompile == 'ON'
if: matrix.os == 'windows-2022' && matrix.staticcompile == 'ON' && matrix.c_compiler == 'clang'
uses: actions/upload-artifact@v4
with:
name: cryptominisat5-win64.exe
Expand Down

0 comments on commit 32dd13b

Please sign in to comment.