From 0aa7cca69bc6392f6b691c997f13a4c24c7a2858 Mon Sep 17 00:00:00 2001 From: Carlos Gomes Date: Tue, 4 Oct 2022 10:39:53 +0200 Subject: [PATCH] Change the TAGS interpolation --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96f6d76..fb25a6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: COMPOSER_VERSION=2.2.18 env: TAGGED_IMAGE: ${{ matrix.image }}:${{ matrix.tag }} - TAGS: ${{ matrix.tag == env.LATEST && format('{0}:latest,{1}', matrix.image, env.TAGGED_IMAGE) || env.TAGGED_IMAGE}} + TAGS: ${{ matrix.tag == env.LATEST && format('{0}:latest,{0}:{1}', matrix.image, matrix.tag) || format('{0}:{1}', matrix.image, matrix.tag) }} steps: - uses: actions/checkout@v2