From 6e3f824f0d27ffe40813c120cfafea28020632c2 Mon Sep 17 00:00:00 2001 From: Lukas Lukac Date: Sun, 6 Jun 2021 14:28:48 +0200 Subject: [PATCH] Build only linux binaries because of a cross-compilation hell with crypto C libs. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 843515a..5d862db 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,8 +10,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - # build and publish in parallel: linux/amd64, darwin/amd64 - goos: [linux, darwin] + # build and publish in parallel: linux/amd64 + goos: [linux] goarch: [amd64] steps: - uses: actions/checkout@v2