From 9e8ddb44fb073aebdda49cc67a651a500bb85f0c Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Fri, 26 Dec 2025 12:52:35 +0100 Subject: [PATCH] Actualiser action.yaml --- action.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/action.yaml b/action.yaml index 47dab01..dda37ad 100644 --- a/action.yaml +++ b/action.yaml @@ -22,13 +22,17 @@ inputs: required: false default: docker no_cache: - description: 'Do we desactivate cache during image duilding' + description: 'Do we desactivate cache during image building' required: false default: false tag_command: description: 'Command used to tag the image (docker|podman)' required: false - default: podman + default: docker + push_command: + description: 'Command used to push the image (docker|podman|skopeo)' + required: false + default: skopeo registry_server: description: 'Address of the image registry server' required: false @@ -102,7 +106,7 @@ runs: debug: ${{ inputs.debug }} - name: install podman - if: inputs.build_command == 'podman' || inputs.tag_command == 'podman' + if: inputs.build_command == 'podman' || inputs.tag_command == 'podman' || inputs.push_command == 'podman' shell: bash run: | source "${{ github.action_path }}/../bashlib.sh"