From f2098c69d53009a86eae7df69e14e873a21e1f88 Mon Sep 17 00:00:00 2001 From: Ondrej Vlach Date: Fri, 16 Aug 2024 16:56:59 +0200 Subject: [PATCH] fix: typo: missing $ sign --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f601c96..c1e437a 100644 --- a/action.yml +++ b/action.yml @@ -38,5 +38,5 @@ runs: shell: sh - name: Build and push docker run: | - docker buildx build --tag ${{ inputs.image_name }}:${{ steps.git.outputs.short_hash }} ${{ inputs.aditional_args }} --platform {{inputs.platform }} --push . + docker buildx build --tag ${{ inputs.image_name }}:${{ steps.git.outputs.short_hash }} ${{ inputs.aditional_args }} --platform ${{inputs.platform }} --push . shell: sh