From 7d0e0c006a3f973b2d8c1bfa6aa2892fd304c389 Mon Sep 17 00:00:00 2001 From: Marie Backman Date: Thu, 26 Sep 2024 10:33:54 -0400 Subject: [PATCH] fix syntax error in GitHub workflow --- .github/workflows/publish.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a4c1e184..eabe4696 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -98,9 +98,9 @@ jobs: with: context: . file: Dockerfile.webmonchow - tags: - - ${{ env.REGISTRY }}/${{ github.repository }}/webmonchow:${{ steps.latest_tag.outputs.latest_tag }} - - ${{ env.REGISTRY }}/${{ github.repository }}/webmonchow:${{ steps.tag.outputs.tag }} + tags: | + ${{ env.REGISTRY }}/${{ github.repository }}/webmonchow:${{ steps.latest_tag.outputs.latest_tag }} + ${{ env.REGISTRY }}/${{ github.repository }}/webmonchow:${{ steps.tag.outputs.tag }} push: true - name: Build and push Autoreducer @@ -108,9 +108,9 @@ jobs: with: context: . file: Dockerfile.autoreducer - tags: - - ${{ env.REGISTRY }}/${{ github.repository }}/autoreducer:${{ steps.latest_tag.outputs.latest_tag }} - - ${{ env.REGISTRY }}/${{ github.repository }}/autoreducer:${{ steps.tag.outputs.tag }} + tags: | + ${{ env.REGISTRY }}/${{ github.repository }}/autoreducer:${{ steps.latest_tag.outputs.latest_tag }} + ${{ env.REGISTRY }}/${{ github.repository }}/autoreducer:${{ steps.tag.outputs.tag }} push: true - name: Build and push Dasmon @@ -118,9 +118,9 @@ jobs: with: context: . file: Dockerfile.dasmon - tags: - - ${{ env.REGISTRY }}/${{ github.repository }}/dasmon:${{ steps.latest_tag.outputs.latest_tag }} - - ${{ env.REGISTRY }}/${{ github.repository }}/dasmon:${{ steps.tag.outputs.tag }} + tags: | + ${{ env.REGISTRY }}/${{ github.repository }}/dasmon:${{ steps.latest_tag.outputs.latest_tag }} + ${{ env.REGISTRY }}/${{ github.repository }}/dasmon:${{ steps.tag.outputs.tag }} push: true - name: Build and push Webmon @@ -128,9 +128,9 @@ jobs: with: context: . file: Dockerfile.webmon - tags: - - ${{ env.REGISTRY }}/${{ github.repository }}/webmon:${{ steps.latest_tag.outputs.latest_tag }} - - ${{ env.REGISTRY }}/${{ github.repository }}/webmon:${{ steps.tag.outputs.tag }} + tags: | + ${{ env.REGISTRY }}/${{ github.repository }}/webmon:${{ steps.latest_tag.outputs.latest_tag }} + ${{ env.REGISTRY }}/${{ github.repository }}/webmon:${{ steps.tag.outputs.tag }} push: true - name: Build and push Workflow @@ -138,7 +138,7 @@ jobs: with: context: . file: Dockerfile.workflow - tags: - - ${{ env.REGISTRY }}/${{ github.repository }}/workflow:${{ steps.latest_tag.outputs.latest_tag }} - - ${{ env.REGISTRY }}/${{ github.repository }}/workflow:${{ steps.tag.outputs.tag }} + tags: | + ${{ env.REGISTRY }}/${{ github.repository }}/workflow:${{ steps.latest_tag.outputs.latest_tag }} + ${{ env.REGISTRY }}/${{ github.repository }}/workflow:${{ steps.tag.outputs.tag }} push: true