mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
📎 Fix registry uri
Signed-off-by: David Barragán Merino <david.barragan@kaleidos.net>
This commit is contained in:
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
@@ -60,12 +60,12 @@ jobs:
|
|||||||
EXTRA_TAGS=("main" "latest")
|
EXTRA_TAGS=("main" "latest")
|
||||||
|
|
||||||
for image in "${IMAGES[@]}"; do
|
for image in "${IMAGES[@]}"; do
|
||||||
docker pull "$REGISTRY/penpotapp/$image:$TAG"
|
docker pull "$REGISTRY/$image:$TAG"
|
||||||
docker tag "$REGISTRY/penpotapp/$image:$TAG" "penpotapp/$image:$TAG"
|
docker tag "$REGISTRY/$image:$TAG" "penpotapp/$image:$TAG"
|
||||||
docker push "penpotapp/$image:$TAG"
|
docker push "penpotapp/$image:$TAG"
|
||||||
|
|
||||||
for tag in "${EXTRA_TAGS[@]}"; do
|
for tag in "${EXTRA_TAGS[@]}"; do
|
||||||
docker tag "$REGISTRY/penpotapp/$image:$TAG" "penpotapp/$image:$tag"
|
docker tag "$REGISTRY/$image:$TAG" "penpotapp/$image:$tag"
|
||||||
docker push "penpotapp/$image:$tag"
|
docker push "penpotapp/$image:$tag"
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user