From 3d8e897d535a5b2de0111d76fa77235b70f21e64 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Mon, 14 Apr 2025 16:27:12 +0200 Subject: [PATCH] Actualiser action.yaml --- action.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 5ef191c..035af73 100644 --- a/action.yaml +++ b/action.yaml @@ -125,7 +125,16 @@ runs: if: inputs.add_version_tag run: | source "${{ github.action_path }}/../bashlib.sh" - step "Image tags" "IMAGE_TAGS=${{ env.IMAGE_TAGS }} pmo-${{ steps.get_version.outputs.version }}" echo "IMAGE_TAGS=${{ env.IMAGE_TAGS }} pmo-${{ steps.get_version.outputs.version }}" >> $GITHUB_ENV + - name: Build and tag image + uses: https://gargoton.petite-maison-orange.fr/pmo-actions/build-image@main + with: + image_name: '${{ inputs.image_name }}' + image_tags: '${{ env.IMAGE_TAGS }}' + registry_server: '${{ inputs.registry_server }}' + build_command: '${{ inputs.build_command }}' + tag_command: '${{ inputs.tag_command }}' + debug: ${{ inputs.debug }} +