We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 684fe0f commit 2f01185Copy full SHA for 2f01185
deploy_multiarch.sh
@@ -22,13 +22,11 @@ for IMAGE in "${IMAGES[@]}"; do
22
TAGS_TO_PUSH+=("$LINE");
23
done < <(oras repo tags --last "${LAST_TAG}" "quay.io/pypa/${REF_IMAGE}" | grep -v "^20[0-9][0-9]-" | grep -v "latest")
24
if [ ${#TAGS_TO_PUSH[@]} -eq 0 ]; then
25
- echo "${IMAGE}: up-to-date"
+ echo "no new tags to push"
26
echo "::endgroup::"
27
continue
28
fi
29
-
30
- echo "${IMAGE}: adding tags ${TAGS_TO_PUSH[*]}"
31
+ echo "pushing tags ${TAGS_TO_PUSH[*]}"
32
# no nested groups in GHA
33
34
0 commit comments