From 4e241dc7d290e86e426b3548b702a0e42bd6c9a3 Mon Sep 17 00:00:00 2001 From: Lucas Lopes Date: Thu, 17 Aug 2023 17:41:28 -0300 Subject: [PATCH] Adding image check to pull request workflow and bumping scripts version --- .github/workflows/pull-request.yaml | 10 +++++++++- Makefile | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 201f7c6a93a..195196f424b 100755 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -26,4 +26,12 @@ jobs: run: sudo make validate - name: Run Hull tests - run: cd tests && go test -v ./... \ No newline at end of file + run: cd tests && go test -v ./... + + - name: Check container images + run: make check-images + if: startsWith(github.ref, 'refs/heads/upstream/release-v') + continue-on-error: true + env: + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} + DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} \ No newline at end of file diff --git a/Makefile b/Makefile index 8a8e329d90a..30123f67f5d 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ remove: forward-port: ./scripts/forward-port -TARGETS := prepare patch clean clean-cache charts list index unzip zip standardize validate template regsync +TARGETS := prepare patch clean clean-cache charts list index unzip zip standardize validate template regsync check-images $(TARGETS): @./scripts/pull-scripts