From 0f6852b681f9dc1e7147a51f82fe26034c5fea4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Sch=C3=A4fer?= Date: Sun, 22 Feb 2026 22:17:27 +0100 Subject: [PATCH] Disable Build binaries step in cicd.yml Comment out the Build binaries step in the CI/CD workflow. --- .github/workflows/cicd.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index fc4bfbf..41b6e6f 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -589,15 +589,23 @@ jobs: # sarif_file: trivy-ghcr.sarif # category: Image Vulnerability Scan - - name: Build binaries + #- name: Build binaries + # env: + # CGO_ENABLED: "0" + # GOFLAGS: "-trimpath" + # run: | + # set -euo pipefail + # TAG_VAR="${TAG}" + # make -j 10 go-build-release tag=$TAG_VAR + # shell: bash + + - name: Run GoReleaser (binaries + deb/rpm/apk) + uses: goreleaser/goreleaser-action@v6 + with: + version: latest + args: release --clean env: - CGO_ENABLED: "0" - GOFLAGS: "-trimpath" - run: | - set -euo pipefail - TAG_VAR="${TAG}" - make -j 10 go-build-release tag=$TAG_VAR - shell: bash + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create GitHub Release uses: softprops/action-gh-release@5be0e66d93ac7ed76da52eca8bb058f665c3a5fe # v2.4.2