From bd00c13059c4c31dad6bd865aaf4e0085e3e7c99 Mon Sep 17 00:00:00 2001 From: Bollos00 Date: Sat, 18 Dec 2021 22:52:02 -0300 Subject: [PATCH] Update release.yaml --- .github/workflows/release.yaml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 433cd7c..a9e5097 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,13 +10,22 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - # build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/386, darwin/amd64 + # build and publish in parallel for different OSs and architectures goos: [linux, windows, darwin] goarch: ["386", amd64] + exclude: + - goarch: "386" + goos: darwin + - goarch: arm64 + goos: windows steps: - uses: actions/checkout@v2 - - uses: wangyoucao577/go-release-action@v1.3 + - uses: wangyoucao577/go-release-action@latest with: github_token: ${{ secrets.GITHUB_TOKEN }} goos: ${{ matrix.goos }} - pre_command: "go get -v -t -d ./... " \ No newline at end of file + goarch: ${{ matrix.goarch }} + extra_files: LICENSE README.md + md5sum: False + sha256sum: True + goversion: latest