From 34d97d7904ecd0b7737aa5e74464e84b52fad5e7 Mon Sep 17 00:00:00 2001 From: daite Date: Mon, 14 Feb 2022 20:28:26 +0900 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 50639e6..648b363 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,12 +11,17 @@ jobs: strategy: matrix: goos: [linux, windows, darwin] - goarch: [amd64, arm64] + goarch: ["386", amd64, arm64] + exclude: + - goarch: "386" + goos: darwin + - goarch: arm64 + goos: windows steps: - uses: actions/checkout@v2 - name: Run tests run: go test -v ./... - - uses: wangyoucao577/go-release-action@v1.16 + - uses: wangyoucao577/go-release-action@v1.24 with: github_token: ${{ secrets.GITHUB_TOKEN }} goos: ${{ matrix.goos }}