From cadf0052ca01e9cc82ae699cd8351bc15c7f7c45 Mon Sep 17 00:00:00 2001 From: frank zhu Date: Thu, 15 Aug 2024 14:12:02 -0500 Subject: [PATCH] add --skip=validate temp --- .github/actions/goreleaser-build-sign-publish/action_utils | 2 +- .github/workflows/build-publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/goreleaser-build-sign-publish/action_utils b/.github/actions/goreleaser-build-sign-publish/action_utils index 051e0763fbd..00741332419 100755 --- a/.github/actions/goreleaser-build-sign-publish/action_utils +++ b/.github/actions/goreleaser-build-sign-publish/action_utils @@ -78,7 +78,7 @@ goreleaser_release() { MACOS_SDK_DIR=$(echo "$(cd "$(dirname "$MACOS_SDK_DIR")" || exit; pwd)/$(basename "$MACOS_SDK_DIR")") fi - $GORELEASER_EXEC release ${flags} --config "$GORELEASER_CONFIG" "$@" + $GORELEASER_EXEC release ${flags} --config "$GORELEASER_CONFIG" "$@" --skip=validate if [[ $ENABLE_DOCKER_PUBLISH == "true" ]]; then _publish_snapshot_images diff --git a/.github/workflows/build-publish.yml b/.github/workflows/build-publish.yml index 97548afaa8c..ee15c81e895 100644 --- a/.github/workflows/build-publish.yml +++ b/.github/workflows/build-publish.yml @@ -98,7 +98,7 @@ jobs: id: goreleaser-build-sign-publish uses: ./.github/actions/goreleaser-build-sign-publish with: - enable-docker-publish: "true" + # enable-docker-publish: "true" docker-registry: ${{ env.ECR_HOSTNAME}} docker-image-name: ${{ env.ECR_IMAGE_NAME }} docker-image-tag: ${{ github.ref_name }}