diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0426f5bd..b143a571 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,9 +20,8 @@ jobs: - name: Set the version id: version run: echo "version=$(date +'%Y%m%d.%H%M')" >> $GITHUB_OUTPUT - - name: Build Release Images + - name: Build Local Images run: | set -e - make image-clean - make build-clean + make clean make image rel BUILD_VER="${{ steps.version.outputs.version }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6cf15afd..6cf3de75 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,8 +26,7 @@ jobs: - name: Build Release Images run: | set -e - make image-clean - make build-clean + make clean make image rel BUILD_VER="${{ steps.version.outputs.version }}" - name: Sync release images to the primary instance run: |