Skip to content

Commit

Permalink
Update mirror.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gdams authored Aug 14, 2024
1 parent 482dfc0 commit 89d40a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:
cd /home/runner/docker/official-images
export BASHBREW_ARCHITECTURES="amd64 arm64v8 ppc64le s390x"
# Loop through each entry in the manifest list
bashbrew list --namespaces library --all eclipse-temurin | while read -r entry; do
# Process only the eclipse-temurin repo
bashbrew list eclipse-temurin | while read -r entry; do
echo "Processing entry: $entry"
# Build and push the image for all defined architectures
bashbrew build --arch "$BASHBREW_ARCHITECTURES" "$entry"
bashbrew push --all --arch "$BASHBREW_ARCHITECTURES" "$entry"
# Build and push the image for all architectures defined in the manifest
bashbrew build "$entry"
bashbrew push "$entry"
done

0 comments on commit 89d40a8

Please sign in to comment.