Actualiser action.yaml

This commit is contained in:
2025-12-26 12:52:35 +01:00
parent a6c99e3da7
commit 9e8ddb44fb

View File

@@ -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"