We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c17d34f commit c560f1aCopy full SHA for c560f1a
.github/workflows/release.yml
@@ -58,5 +58,5 @@ jobs:
58
env:
59
BASE_IMAGE: ${{ steps.get-base-image.outputs.tags }}
60
run: |
61
- echo $DOCKER_METADATA_OUTPUT_TAGS | tr ' ' '\n' | xargs -n1 docker tag "$BASE_IMAGE"
62
- echo "$BASE_IMAGE" | cut -f1 -d: | docker push --all-tags --quiet
+ echo "$DOCKER_METADATA_OUTPUT_TAGS" | tr ' ' '\n' | xargs -n1 docker tag "$BASE_IMAGE"
+ docker push --all-tags --quiet "$(echo "$BASE_IMAGE" | cut -f1 -d:)"
0 commit comments