From 0e6ad231f2889c18b4106eb4a420893250111d67 Mon Sep 17 00:00:00 2001 From: tmokmss Date: Thu, 15 Feb 2024 03:44:47 +0000 Subject: [PATCH] fix release.yml --- .github/workflows/release.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1186f8d..688dfaa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,5 +18,16 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} goos: linux - goarch: [amd64, arm64] + goarch: amd64 + pre_command: apt update -y && apt install -y zlib1g-dev + release-linux-arm64: + name: release linux/arm64 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: wangyoucao577/go-release-action@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + goos: linux + goarch: arm64 pre_command: apt update -y && apt install -y zlib1g-dev