From 91cda110494bcfbb65bea3a5e5c58e5596c50c96 Mon Sep 17 00:00:00 2001 From: Masayoshi Mizutani Date: Thu, 13 Jun 2024 13:12:45 +0900 Subject: [PATCH] Update build to only include linux binary --- .github/workflows/reelase.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reelase.yml b/.github/workflows/reelase.yml index d381627..d060733 100644 --- a/.github/workflows/reelase.yml +++ b/.github/workflows/reelase.yml @@ -12,7 +12,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - goos: [linux, darwin] + # keychain library is required for building darwin binary, however it's not available in ubuntu. Then we build only linux binary here. + goos: [linux] goarch: [amd64, arm64] steps: - uses: actions/checkout@v4