Actualiser action.yaml

This commit is contained in:
2025-04-14 16:27:12 +02:00
parent 6b0312a58e
commit 3d8e897d53

View File

@@ -125,7 +125,16 @@ runs:
if: inputs.add_version_tag if: inputs.add_version_tag
run: | run: |
source "${{ github.action_path }}/../bashlib.sh" 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 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 }}