Skip to content

Commit d680c22

Browse files
authored
revert docker testing changes
1 parent 5302de8 commit d680c22

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/docker_publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ jobs:
126126
127127
- name: Process multiarch manifest
128128
run: |
129-
echo "Re-tag multiarch image $IMAGE to altinityinfra/$COMPONENT:$NEW_TAG"
130-
docker buildx imagetools create --tag "altinityinfra/$COMPONENT:$NEW_TAG" "$IMAGE"
129+
echo "Re-tag multiarch image $IMAGE to altinity/$COMPONENT:$NEW_TAG"
130+
docker buildx imagetools create --tag "altinity/$COMPONENT:$NEW_TAG" "$IMAGE"
131131
132132
# Create directory for image archives
133133
mkdir -p image_archives
@@ -136,15 +136,15 @@ jobs:
136136
for PLATFORM in "linux/amd64" "linux/arm64"; do
137137
echo "Pulling and saving image for $PLATFORM..."
138138
# Pull the specific platform image
139-
docker pull --platform $PLATFORM "altinityinfra/$COMPONENT:$NEW_TAG"
139+
docker pull --platform $PLATFORM "altinity/$COMPONENT:$NEW_TAG"
140140
141141
# Save the image to a tar file
142142
ARCH=$(echo $PLATFORM | cut -d'/' -f2)
143-
docker save "altinityinfra/$COMPONENT:$NEW_TAG" -o "image_archives/${COMPONENT}-${NEW_TAG}-${ARCH}.tar"
143+
docker save "altinity/$COMPONENT:$NEW_TAG" -o "image_archives/${COMPONENT}-${NEW_TAG}-${ARCH}.tar"
144144
done
145145
146146
# Save manifest inspection
147-
docker buildx imagetools inspect "altinityinfra/$COMPONENT:$NEW_TAG" > image_archives/manifest.txt
147+
docker buildx imagetools inspect "altinity/$COMPONENT:$NEW_TAG" > image_archives/manifest.txt
148148
149149
# Compress the archives
150150
cd image_archives

0 commit comments

Comments
 (0)