Skip to content

Commit 8393048

Browse files
Refactor tag handling
1 parent 34e389f commit 8393048

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,7 @@ jobs:
5858
env:
5959
BASE_IMAGE: ${{ steps.get-base-image.outputs.tags }}
6060
run: |
61-
echo "$DOCKER_METADATA_OUTPUT_TAGS" | xargs -n1 docker tag "$BASE_IMAGE"
61+
for VERSION_TAG in "$DOCKER_METADATA_OUTPUT_TAGS"; do
62+
docker tag "$BASE_IMAGE" $VERSION_TAG
63+
done
6264
echo "$BASE_IMAGE" | cut -f1 -d: | docker push --all-tags --quiet

0 commit comments

Comments
 (0)