From 439bbd3df0281f2be7a9ab140f57a9edcc696d86 Mon Sep 17 00:00:00 2001 From: Lukas Garberg Date: Fri, 14 Jun 2024 14:40:22 +0200 Subject: [PATCH] ci: Fix list of tags --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5086ee015..df1eb8f2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -206,7 +206,9 @@ jobs: context: . file: ./Dockerfile.nipapd load: true - tags: ${{ env.NIPAPD_IMAGE }}:ci ${{ steps.nipapd_meta.outputs.tags }} + tags: | + ${{ env.NIPAPD_IMAGE }}:ci + ${{ steps.nipapd_meta.outputs.tags }} push: false - name: "www metadata" @@ -223,7 +225,9 @@ jobs: context: . file: ./Dockerfile.www load: true - tags: ${{ env.WWW_IMAGE }}:ci ${{ steps.www_meta.outputs.tags }} + tags: | + ${{ env.WWW_IMAGE }}:ci + ${{ steps.www_meta.outputs.tags }} push: false - name: "Setup Docker test"