From 5528e75dc89574289835458e656101303c47bb4d Mon Sep 17 00:00:00 2001 From: Yutaka Kondo Date: Thu, 23 Jan 2025 06:01:57 +0900 Subject: [PATCH] fix(docker-build-and-push): set docker meta data to `universe-visualization` images (#5679) append universe-visualization actions Signed-off-by: Yutaka Kondo --- .../actions/docker-build-and-push/action.yaml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/actions/docker-build-and-push/action.yaml b/.github/actions/docker-build-and-push/action.yaml index 5feb1bcc419..09867cd644f 100644 --- a/.github/actions/docker-build-and-push/action.yaml +++ b/.github/actions/docker-build-and-push/action.yaml @@ -181,6 +181,32 @@ runs: flavor: | latest=false + - name: Docker meta for autoware:universe-visualization-devel + id: meta-universe-visualization-devel + uses: docker/metadata-action@v5 + with: + images: ${{ github.repository_owner }}/${{ inputs.target-image }} + tags: | + type=raw,value=universe-visualization-devel-${{ inputs.platform }} + type=raw,value=universe-visualization-devel-${{ steps.date.outputs.date }}-${{ inputs.platform }} + type=ref,event=tag,prefix=universe-visualization-devel-,suffix=-${{ inputs.platform }} + bake-target: docker-metadata-action-universe-visualization-devel + flavor: | + latest=false + + - name: Docker meta for autoware:universe-visualization + id: meta-universe-visualization + uses: docker/metadata-action@v5 + with: + images: ${{ github.repository_owner }}/${{ inputs.target-image }} + tags: | + type=raw,value=universe-visualization-${{ inputs.platform }} + type=raw,value=universe-visualization-${{ steps.date.outputs.date }}-${{ inputs.platform }} + type=ref,event=tag,prefix=universe-visualization-,suffix=-${{ inputs.platform }} + bake-target: docker-metadata-action-universe-visualization + flavor: | + latest=false + - name: Docker meta for autoware:universe-devel id: meta-universe-devel uses: docker/metadata-action@v5 @@ -229,6 +255,8 @@ runs: ${{ steps.meta-universe-planning-control.outputs.bake-file }} ${{ steps.meta-universe-vehicle-system-devel.outputs.bake-file }} ${{ steps.meta-universe-vehicle-system.outputs.bake-file }} + ${{ steps.meta-universe-visualization-devel.outputs.bake-file }} + ${{ steps.meta-universe-visualization.outputs.bake-file }} ${{ steps.meta-universe-devel.outputs.bake-file }} ${{ steps.meta-universe.outputs.bake-file }} provenance: false