From 0757d9d8ce603e28e723c86395deb99fef8ec8e5 Mon Sep 17 00:00:00 2001 From: muava12 Date: Sun, 22 Feb 2026 12:02:03 +0800 Subject: [PATCH] ci(actions): remove docker release config from arm64 build to fix pipeline crash This commit adds a deletion command (yq -i 'del(.dockers_v2)') within the build-arm64 workflow. It resolves an issue where GoReleaser crashed during the archive step because it attempted to parse the upstream docker configuration (.dockers_v2) without having the necessary DOCKERHUB_IMAGE_NAME environment variable present in our custom fork build. --- .github/workflows/build-arm64.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-arm64.yml b/.github/workflows/build-arm64.yml index 6b23df3b9..8a633e4c5 100644 --- a/.github/workflows/build-arm64.yml +++ b/.github/workflows/build-arm64.yml @@ -56,6 +56,7 @@ jobs: yq -i '.builds[0].goos = ["linux"]' .goreleaser.yaml yq -i '.builds[0].goarch = ["arm64"]' .goreleaser.yaml yq -i 'del(.builds[0].ignore)' .goreleaser.yaml + yq -i 'del(.dockers_v2)' .goreleaser.yaml - name: Run GoReleaser uses: goreleaser/goreleaser-action@v6