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