From 3e41e3d72502cfef38ece34ed829cee6d624e7c1 Mon Sep 17 00:00:00 2001 From: Milo Schwartz Date: Thu, 30 Jan 2025 10:59:31 -0500 Subject: [PATCH] change order of cicd docker build step --- .github/workflows/cicd.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 07f1b1d4..eec6d32b 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -65,11 +65,6 @@ jobs: echo "Updated install/main.go with Pangolin version $PANGOLIN_VERSION, Gerbil version $GERBIL_VERSION, and Badger version $BADGER_VERSION" cat install/main.go - - name: Build and push Docker images - run: | - TAG=${{ env.TAG }} - make build-release tag=$TAG - - name: Build installer working-directory: install run: | @@ -80,3 +75,8 @@ jobs: with: name: install-bin path: install/bin/ + + - name: Build and push Docker images + run: | + TAG=${{ env.TAG }} + make build-release tag=$TAG