diff --git a/.github/workflows/ci-goreleaser.yaml b/.github/workflows/ci-goreleaser.yaml index 4a184e39..c57159c3 100644 --- a/.github/workflows/ci-goreleaser.yaml +++ b/.github/workflows/ci-goreleaser.yaml @@ -20,12 +20,6 @@ jobs: strategy: matrix: GOOS: [linux, windows, darwin] - GOARCH: ["386", amd64, arm64, ppc64le] - exclude: - - GOOS: darwin - GOARCH: "386" - - GOOS: windows - GOARCH: arm64 runs-on: ubuntu-20.04 steps: @@ -59,5 +53,4 @@ jobs: args: --snapshot --clean --skip-sign --skip-sbom --timeout 2h --split env: GOOS: ${{ matrix.GOOS }} - GOARCH: ${{ matrix.GOARCH }} GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ac5af5b0..0574a864 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -9,12 +9,6 @@ jobs: strategy: matrix: GOOS: [linux, windows, darwin] - GOARCH: ["386", amd64, arm64, ppc64le] - exclude: - - GOOS: darwin - GOARCH: "386" - - GOOS: windows - GOARCH: arm64 runs-on: ubuntu-20.04 steps: @@ -63,7 +57,6 @@ jobs: args: release --clean --split --timeout 2h env: GOOS: ${{ matrix.GOOS }} - GOARCH: ${{ matrix.GOARCH }} GITHUB_TOKEN: ${{ secrets.GH_PAT }} COSIGN_EXPERIMENTAL: true GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}