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.
This commit is contained in:
muava12 2026-02-22 12:02:03 +08:00
parent 125f2d3d34
commit 0757d9d8ce

View file

@ -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