adding image tag

This commit is contained in:
2026-07-10 17:48:15 -03:00
parent fb6584ea84
commit e098b7e0c5
3 changed files with 11 additions and 6 deletions

View File

@@ -14,8 +14,12 @@ inputs:
description: Password / token for the container registry (pass via secrets)
required: true
image:
description: Full image reference (host/path/name) without tag — :latest is appended
description: Full image reference (host/path/name) without tag
required: true
image_tag:
description: Tag to apply to the built image
required: false
default: latest
platforms:
description: Comma-separated list of target platforms
required: false
@@ -86,4 +90,4 @@ runs:
builder: remote-builder
platforms: ${{ inputs.platforms }}
tags: |
${{ inputs.image }}:latest
${{ inputs.image }}:${{ inputs.image_tag }}