From 4ddd3c3ca760b89a3b86e904f117a6868596a7ae Mon Sep 17 00:00:00 2001 From: Edo Date: Sun, 25 Feb 2024 16:31:11 +0100 Subject: [PATCH] build: add macos and aarc64 release builds WINE should run on macOS and ARM64 because why not --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 824e35f..84a6e41 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,10 +21,14 @@ jobs: include: - target: x86_64-unknown-linux-gnu os: ubuntu-20.04 + - target: aarch64-unknown-linux-gnu + os: ubuntu-20.04 - target: x86_64-pc-windows-msvc os: windows-latest - target: i686-pc-windows-msvc os: windows-latest + - target: x86_64-apple-darwin + os: macos-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 @@ -35,4 +39,4 @@ jobs: tar: unix zip: windows env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}