Actualiser action.yaml

This commit is contained in:
2025-12-26 15:16:57 +01:00
parent e889e21fc1
commit 391870bdfa

View File

@@ -73,17 +73,12 @@ runs:
check_message: "Starting multiarch build for ${{ inputs.image_name }}"
debug: ${{ inputs.debug }}
- name: Install podman
shell: bash
run: |
source "${{ github.action_path }}/../bashlib.sh"
if command -v podman >/dev/null; then
success "Already installed" "Podman is present"
else
check_command apt-get
apt-get update
apt-get -y install podman || error "Install failed" "Podman installation failed"
fi
- name: Install Podman
uses: https://gargoton.petite-maison-orange.fr/pmo-actions/install-container-tools@main
with:
tools: podman
debug: ${{ inputs.debug }}
- name: Login to registry with podman
shell: bash