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 }} +