Actualiser action.yaml

This commit is contained in:
2025-04-14 12:11:06 +02:00
parent 666b49b579
commit 00c69f1900

View File

@@ -31,6 +31,9 @@ runs:
using: 'composite' using: 'composite'
steps: steps:
- name: Load bash library
uses: https://gargoton.petite-maison-orange.fr/pmo-actions/bash-library@main
- name: Set debug mode - name: Set debug mode
if: ${{ inputs.debug == true }} if: ${{ inputs.debug == true }}
shell: bash shell: bash
@@ -43,7 +46,7 @@ runs:
- name: Build the image - name: Build the image
shell: bash shell: bash
run: | run: |
source "${{ github.action_path }}/bashlib.sh" source "${{ github.action_path }}/../bashlib.sh"
check_command ${{ inputs.build_command }} check_command ${{ inputs.build_command }}
@@ -63,7 +66,7 @@ runs:
- name: tag images - name: tag images
shell: bash shell: bash
run: | run: |
source "${{ github.action_path }}/bashlib.sh" source "${{ github.action_path }}/../bashlib.sh"
check_command ${{ inputs.tag_command }} check_command ${{ inputs.tag_command }}