We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec6aaaf commit bcc4296Copy full SHA for bcc4296
docker-create-multiarch-codex.sh
@@ -18,16 +18,16 @@ docker manifest create \
18
${VERSION_TAG} \
19
${AMEND_TAGS[@]}
20
21
-# shellcheck disable=SC2068
22
docker manifest push $VERSION_TAG
23
24
if [[ $PKG_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]$ ]]; then
25
# If the version is just numbers push it as latest
26
LATEST_TAG="$REPO:latest"
27
echo "Creating $LATEST_TAG."
+ # shellcheck disable=2068
28
docker manifest create \
29
$LATEST_TAG \
30
- --amend $VERSION_TAG
+ ${AMEND_TAGS[@]}
31
32
docker manifest push $LATEST_TAG
33
fi
0 commit comments