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