Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.

Commit 1d50380

Browse files
committed
🐛 Fix metadata action for image build
1 parent 66bfe7f commit 1d50380

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/actions/metadata/action.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,10 @@ outputs:
2323
runs:
2424
using: "composite"
2525
steps:
26-
- name: Build image urls
27-
shell: bash
28-
id: image-urls
29-
env:
30-
QUAY_USERNAME: ${{ inputs.quay_username }}
31-
run: |
32-
[[ -n "$QUAY_USERNAME" ]] && IMAGES=${IMAGES},${REGISTRY}/${IMAGE_NAME}
33-
echo "::set-output name=images::${IMAGES}"
3426
- name: Docker manager metadata
3527
id: meta
3628
uses: docker/metadata-action@v4.1.1
3729
with:
38-
images: ${{ steps.image-urls.outputs.images }}
30+
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3931
flavor: ${{ inputs.metadata_flavor }}
4032
tags: ${{ inputs.metadata_tags }}

0 commit comments

Comments
 (0)