diff --git a/.github/workflows/override_tests.yml b/.github/workflows/override_tests.yml index 9b8381a..fb3efd7 100644 --- a/.github/workflows/override_tests.yml +++ b/.github/workflows/override_tests.yml @@ -128,11 +128,11 @@ jobs: - name: Test the container image overrides configuration run: | echo "Checking image references in started containers..."; - docker container inspect amazeeio-haproxy | jq '.[].Config.Image' | grep 'ghcr.io/pygmystack/haproxy:main'; + docker container inspect amazeeio-haproxy | jq '.[].Config.Image' | grep '${{ steps.meta.outputs.tags }}'; pygmy --config examples/pygmy.basic.yml clean; pygmy --config examples/pygmy.yml up; echo "Checking image references in started containers..."; - docker container inspect amazeeio-haproxy | jq '.[].Config.Image' | grep 'ghcr.io/pygmystack/haproxy:main'; + docker container inspect amazeeio-haproxy | jq '.[].Config.Image' | grep '${{ steps.meta.outputs.tags }}'; - name: Clone the official examples run: |