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:
parent
125f2d3d34
commit
0757d9d8ce
1 changed files with 1 additions and 0 deletions
1
.github/workflows/build-arm64.yml
vendored
1
.github/workflows/build-arm64.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue