From a6c99e3da7487f6d8ef501c947e51aafe66c08f6 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Mon, 28 Apr 2025 20:34:59 +0200 Subject: [PATCH] Actualiser action.yaml --- action.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yaml b/action.yaml index 3b08a48..47dab01 100644 --- a/action.yaml +++ b/action.yaml @@ -21,6 +21,10 @@ inputs: description: 'Command used to build the image (docker|podman)' required: false default: docker + no_cache: + description: 'Do we desactivate cache during image duilding' + required: false + default: false tag_command: description: 'Command used to tag the image (docker|podman)' required: false @@ -152,6 +156,7 @@ runs: image_tags: '${{ env.IMAGE_TAGS }}' registry_server: '${{ inputs.registry_server }}' build_command: '${{ inputs.build_command }}' + no_cache: '${{ inputs.no_cache }}' tag_command: '${{ inputs.tag_command }}' debug: ${{ inputs.debug }}