diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5979c07..4e9b057 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Test, build and release binary +name: Build and release binary on: push: branches: @@ -109,6 +109,21 @@ jobs: needs: - build runs-on: ubuntu-latest + strategy: + matrix: + include: + - os: macos-latest + target: x86_64-apple-darwin + suffix: '' + - os: macos-latest-xlarge + target: aarch64-apple-darwin + suffix: '' + - os: ubuntu-latest + target: x86_64-unknown-linux-gnu + suffix: '' + - os: windows-latest + target: x86_64-pc-windows-msvc + suffix: .exe steps: - uses: actions/checkout@master with: