From 08472ffb70b3e2bf522a39560fabc068b7697e8e Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Fri, 26 Dec 2025 13:41:35 +0100 Subject: [PATCH] Actualiser action.yaml --- action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yaml b/action.yaml index 28f3f6d..83ff43d 100644 --- a/action.yaml +++ b/action.yaml @@ -24,7 +24,7 @@ inputs: tag_command: description: 'Command used to tag the image (docker|podman)' required: false - default: podman + default: docker debug: description: 'Run the action in debug mode' required: false @@ -52,7 +52,7 @@ runs: echo "DEBUG=ON" >> $GITHUB_ENV debug Debug switch on - - name: Tash description + - name: Task description shell: bash run: | source "${{ github.action_path }}/../bashlib.sh" @@ -78,7 +78,7 @@ runs: image="${{ inputs.registry_server }}/${{ inputs.image_name }}${sep}${tags[0]}" - if [[ ${{ input.no_cache }} == "true" ]] ; then + if [[ ${{ inputs.no_cache }} == "true" ]] ; then nocache="--pull --no-cache" else nocache=""