From 8ac06ca8df2223790f58dbc16e040c90b3824e35 Mon Sep 17 00:00:00 2001 From: Timur Ismagilov Date: Sun, 1 Aug 2021 14:59:10 +0500 Subject: [PATCH] Update release.yaml arm64 support, bsd support --- .github/workflows/release.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5a6c654..ecd53ae 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,12 +8,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - # build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/amd64 - goos: [linux, windows, darwin] - goarch: ["386", amd64] + # build and publish in parallel a lot of binaries + # https://golang.org/doc/install/source#environment See supported Go OS/Arch pairs here + goos: [linux, windows, darwin, freebsd, openbsd] + goarch: ["386", amd64, arm64] exclude: - goarch: "386" goos: darwin + - goarch: arm64 + goos: freebsd steps: - uses: actions/checkout@v2 - uses: wangyoucao577/go-release-action@v1.17