From 1aa72c5387432f445cf4dc3379ea1f088d59722d Mon Sep 17 00:00:00 2001 From: Stefan Staude Date: Thu, 11 Feb 2021 11:59:44 +0100 Subject: [PATCH] add option to push all docker tags --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index d0cb91f..020e28d 100644 --- a/action.yml +++ b/action.yml @@ -108,7 +108,7 @@ runs: fi if [[ ${{ steps.preparation.outputs.push }} == "true" ]]; then - docker push ${{ inputs.dockerregistry }}/${{ inputs.dockerimage }} + docker push --all-tags ${{ inputs.dockerregistry }}/${{ inputs.dockerimage }} fi fi