summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build-image.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build-image.yaml b/.github/workflows/build-image.yaml
index 4271c37..a8087cc 100644
--- a/.github/workflows/build-image.yaml
+++ b/.github/workflows/build-image.yaml
@@ -95,9 +95,10 @@ jobs:
env:
DIGEST: ${{ steps.push.outputs.digest }}
TAGS: ${{ steps.build.outputs.tags }}
+ IMAGE_NAME: ${{ inputs.image_name }}
run: |
images=()
for tag in ${TAGS}; do
- images+=("${tag}@${DIGEST}")
+ images+=("${REGISTRY}/${IMAGE_NAME}:${tag}@${DIGEST}")
done
cosign sign --yes "${images[@]}"