diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d3c3cd5..0a1a3b8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -144,3 +144,24 @@ jobs: # Execute the build. You can specify a specific target with "--target " 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 +