diff --git a/.github/workflows/base-ci-goreleaser.yaml b/.github/workflows/base-ci-goreleaser.yaml index 5790efaf..ba30186d 100644 --- a/.github/workflows/base-ci-goreleaser.yaml +++ b/.github/workflows/base-ci-goreleaser.yaml @@ -67,12 +67,13 @@ jobs: uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0 with: distribution: goreleaser-pro - version: v2.2.0 + version: v2.3.2 workdir: distributions/${{ inputs.distribution }} args: --snapshot --clean --skip=sign,sbom --timeout 2h --split env: GOOS: ${{ matrix.GOOS }} GOARCH: ${{ matrix.GOARCH }} + GOARM: 7 # Default is 6 GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} - name: Upload linux service packages @@ -80,4 +81,5 @@ jobs: uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 with: name: linux-packages - path: distributions/${{ inputs.distribution }}/dist/linux_amd64/* + path: distributions/${{ inputs.distribution }}/dist/linux_amd64_v1/* + if-no-files-found: error diff --git a/.github/workflows/base-release.yaml b/.github/workflows/base-release.yaml index be351240..03e2506a 100644 --- a/.github/workflows/base-release.yaml +++ b/.github/workflows/base-release.yaml @@ -83,12 +83,13 @@ jobs: - uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0 with: distribution: goreleaser-pro - version: v2.2.0 + version: v2.3.2 workdir: distributions/${{ inputs.distribution }} args: release --clean --split --timeout 2h --release-header-tmpl=../../.github/release-template.md env: GOOS: ${{ matrix.GOOS }} GOARCH: ${{ matrix.GOARCH }} + GOARM: 7 # Default is 6 GITHUB_TOKEN: ${{ secrets.GH_PAT }} COSIGN_YES: true GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}