diff options
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 02bfa06..bc5ccf0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,11 +59,13 @@ jobs: matrix: include: - platform: "ubuntu-22.04" - args: "" - - platform: "macos-14" # M1/M2/M3 (Apple Silicon) + args: "--target x86_64-unknown-linux-gnu" + - platform: "macos-14" + args: "--target x86_64-apple-darwin" + - platform: "macos-latest" args: "--target aarch64-apple-darwin" - platform: "windows-latest" - args: "" + args: "--target x86_64-pc-windows-msvc" runs-on: ${{ matrix.platform }} steps: |