From 3615f413db19712320ff46373ac16112fb3679d9 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Thu, 9 Sep 2021 11:48:59 +0530 Subject: [PATCH] chore: fix release action --- .github/workflows/release.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 870b1d7..b3bd8d2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -4,16 +4,17 @@ on: jobs: releases-matrix: - name: Release Go Binary + name: Release Authorizer Binary 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] - exclude: - - goarch: '386' - goos: darwin + goarch: amd64 + # goarch: ['386', amd64] + # exclude: + # - goarch: '386' + # goos: darwin steps: - uses: actions/checkout@v2 - uses: wangyoucao577/go-release-action@v1.20 @@ -22,4 +23,4 @@ jobs: goos: ${{ matrix.goos }} goarch: ${{ matrix.goarch }} build_command: make clean && make - extra_files: .env.sample app build + extra_files: .env.sample app build