We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e87ab5 commit 1c4fc10Copy full SHA for 1c4fc10
1 file changed
action.yml
@@ -154,6 +154,7 @@ runs:
154
run: |
155
# Parse the architecture tags JSON
156
ARCH_TAGS='${{ inputs.architecture-tags }}'
157
+ echo "Arch tags: $ARCH_TAGS"
158
BASE_IMAGE=$(echo "${{ steps.meta.outputs.tags }}" | cut -d ':' -f 1)
159
BASE_TAG=$(echo "${{ steps.meta.outputs.tags }}" | cut -d ':' -f 2)
160
@@ -165,7 +166,7 @@ runs:
165
166
DIGEST=$(echo $ARCH_TAGS | jq -r ".[\"$ARCH_TAG\"]")
167
MANIFEST_CMD="$MANIFEST_CMD ${BASE_IMAGE}@${DIGEST}"
168
done
-
169
+ echo "Executing manifest command: $MANIFEST_CMD"
170
# Execute the manifest commands
171
eval $MANIFEST_CMD
172
docker manifest push ${BASE_IMAGE}:${BASE_TAG}
0 commit comments