From 29935be2c3cd32767dd35f203cc6457925a797b2 Mon Sep 17 00:00:00 2001 From: Dei Layborer <115664592+dei-layborer@users.noreply.github.com> Date: Sat, 2 Sep 2023 05:49:35 -0400 Subject: [PATCH] Add arm64 build actions (#14) Add arm64 build actions for darwin/macOS and linux. --- .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 dd5787f..81c67c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,10 +9,14 @@ jobs: strategy: matrix: goos: [linux, darwin, windows] + goarch: [amd64, arm64] + exclude: + - goarch: arm64 + goos: windows steps: - uses: actions/checkout@v3 - uses: wangyoucao577/go-release-action@v1.30 with: github_token: ${{ secrets.GITHUB_TOKEN }} goos: ${{ matrix.goos }} - goarch: amd64 + goarch: ${{ matrix.goarch }}