Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos authored Jul 14, 2024
1 parent 8daebaa commit c486556
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,24 @@ jobs:
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build .

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

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

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

0 comments on commit c486556

Please sign in to comment.