From 229a789a45bf5035faf60509cfcd532fe52ee783 Mon Sep 17 00:00:00 2001 From: Andrew Karpow Date: Tue, 19 Sep 2023 14:09:25 -0400 Subject: [PATCH] [release action] use latest go binary, don't build for arm64-linux --- .github/workflows/release.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 93b27ac8..76f4523a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,15 +17,16 @@ jobs: exclude: - goarch: arm64 goos: windows + - goarch: arm64 + goos: linux steps: - uses: actions/checkout@v4 - - run: go mod edit -json | jq -r .Go | echo "GO_VERSION_FROM_PROJECT=$(cut -d' ' -f2)" >>${GITHUB_ENV} - uses: wangyoucao577/go-release-action@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} goos: ${{ matrix.goos }} goarch: ${{ matrix.goarch }} - goversion: ${{ env.GO_VERSION_FROM_PROJECT }}" + goversion: latest binary_name: archerctl project_path: "./cmd/archerctl" extra_files: LICENSE README.md