From ba1517fcebd00b6224f340f7a0bd2389016d6476 Mon Sep 17 00:00:00 2001 From: Yingwen Date: Thu, 9 Mar 2023 11:35:38 +0800 Subject: [PATCH] ci: Fix step "build and push amd64" not triggered (#1145) --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d8eb3ea9b..fa2c123982 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -227,7 +227,6 @@ jobs: path: amd64 - name: Unzip the amd64 artifacts - id: unzip-amd64 run: | cd amd64 tar xvf greptime-linux-amd64.tgz @@ -264,7 +263,7 @@ jobs: - name: Build and push amd64 only uses: docker/build-push-action@v3 - if: success() || steps.unzip-arm64.conclusion == 'failure' # Only build and push amd64 platform if unzip-arm64 fails + if: success() || steps.download-arm64.conclusion == 'failure' # Only build and push amd64 platform if download-arm64 fails with: context: . file: ./docker/ci/Dockerfile