Skip to content

Commit

Permalink
Update deploy_multiarch.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Mar 9, 2025
1 parent 52f635e commit 9566f70
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions deploy_multiarch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
set -euo pipefail

IMAGES=(manylinux2014 manylinux_2_28 manylinux_2_31 manylinux_2_34 musllinux_1_2)
#IMAGES=(manylinux_2_28 manylinux_2_31 manylinux_2_34 musllinux_1_2)

#IMAGES=(manylinux2014)
podman login -u "${QUAY_USERNAME}" -p "${QUAY_PASSWORD}" quay.io

for IMAGE in "${IMAGES[@]}"; do
Expand All @@ -21,7 +19,7 @@ for IMAGE in "${IMAGES[@]}"; do
TAGS_TO_PUSH=()
while IFS='' read -r LINE; do
TAGS_TO_PUSH+=("$LINE");
done < <(oras repo tags --last "${LAST_TAG}" "quay.io/pypa/${REF_IMAGE}" | grep -v "^20[0-9][0-9]-" | grep -v 2025.03 | grep -v "latest")
done < <(oras repo tags --last "${LAST_TAG}" "quay.io/pypa/${REF_IMAGE}" | grep -v "^20[0-9][0-9]-" | grep -v "latest")
if [ ${#TAGS_TO_PUSH[@]} -eq 0 ]; then
echo "${IMAGE}: up-to-date"
continue
Expand Down

0 comments on commit 9566f70

Please sign in to comment.