While using bluebuild for the first time, I was confused. The image did build, but I had no idea where the output of the build was.
It would be very useful to display it as a clickable link, in particular for beginers.
I suggest adding this step:
- name: Summary
shell: bash
env:
BB_REGISTRY: ${{ inputs.registry }}
BB_REGISTRY_NAMESPACE: ${{ inputs.registry_namespace }}
RECIPE: ${{ inputs.recipe }}
run: |
IMAGE_NAME=$(basename "${RECIPE}" .yml)
echo "✅ Image published to ${BB_REGISTRY}/${BB_REGISTRY_NAMESPACE}/${IMAGE_NAME}"
Another idea would be to display a link to the appropriate documentation for beginners, or even to suggest commands.