Skip to content

Commit

Permalink
Update binary-build.yml -- fix artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Jan 13, 2024
1 parent 46d3cd4 commit 71f8da2
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,18 +70,25 @@ jobs:
run: ctest -C ${{ matrix.build_type }}

- name: Upload Artifact - Linux
if: matrix.os != 'windows-2022' && matrix.staticcompile == 'ON'
if: matrix.os == 'ubuntu-20.04' && matrix.staticcompile == 'ON'
uses: actions/upload-artifact@v3
with:
name: cryptominisat5
name: cryptominisat5-linux-amd64
path: cryptominisat5

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

- name: Upload Artifact - Windows
if: matrix.os == 'windows-2022' && matrix.staticcompile == 'ON'
uses: actions/upload-artifact@v3
with:
name: cryptominisat\Release\cryptominisat5.exe
path: cryptominisat5.exe
path: cryptominisat5-win64.exe

#- name: "Install CMS (unix)"
# if: ${{ !contains(matrix.os, 'windows') }}
Expand Down

0 comments on commit 71f8da2

Please sign in to comment.