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' - -