From 4c469f30d04809365c6e2cc47d1809331cfa8c4a Mon Sep 17 00:00:00 2001 From: Ondrej Vlach Date: Fri, 16 Aug 2024 16:49:16 +0200 Subject: [PATCH] fix: unknown shorthand flag: 't' in -t --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 0e9ba66..f2df74e 100644 --- a/action.yml +++ b/action.yml @@ -38,5 +38,5 @@ runs: shell: sh - name: Build and push docker run: | - docker dockerx build -t ${{ inputs.image_name }}:${{ steps.git.outputs.short_hash }} ${{ inputs.aditional_args }} --platform {{inputs.platform }} --push . + docker dockerx build --tag ${{ inputs.image_name }}:${{ steps.git.outputs.short_hash }} ${{ inputs.aditional_args }} --platform {{inputs.platform }} --push . shell: sh