From 279b5537e2e854c14194bd2d0f44c22d3c9e9a18 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Mon, 14 Apr 2025 15:52:43 +0200 Subject: [PATCH] Actualiser action.yaml --- action.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/action.yaml b/action.yaml index 01e4ce2..5f221b3 100644 --- a/action.yaml +++ b/action.yaml @@ -51,7 +51,6 @@ inputs: default: false type: boolean - runs: using: 'composite' steps: @@ -59,7 +58,7 @@ runs: uses: https://gargoton.petite-maison-orange.fr/pmo-actions/bash-library@main - name: Set debug mode - if: inputs.debug == 'true' + if: inputs.debug == true shell: bash run: | source "${{ github.action_path }}/../bashlib.sh" @@ -86,7 +85,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' shell: bash run: | source "${{ github.action_path }}/../bashlib.sh" @@ -130,7 +129,7 @@ runs: echo "IMAGE_TAGS=${{ inputs.image_tags }}" >> $GITHUB_ENV - name: Add PMO version tag - if: inputs.add_version_tag == 'true' + if: inputs.add_version_tag == true run: | echo "IMAGE_TAGS=${{ env.IMAGE_TAGS }} pmo-${{ steps.get_version.outputs.version }}" >> $GITHUB_ENV @@ -204,5 +203,3 @@ runs: check_uuid: ${{ inputs.check_uuid }} check_command: stop check_message: 'Docker image for ${{ inputs.image_name }}: task done' - -