From 74a3d1321df0257fa0e999fafbec8b3ed13d107f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Esbjo=CC=88rn?= Date: Thu, 16 Jun 2022 12:45:27 +0200 Subject: [PATCH] github: do not push main 8.0 images anymore, would break old installs --- .github/workflows/docker.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 09a9da5..b31f3e6 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -59,10 +59,9 @@ jobs: docker push $DOCKER_REGISTRY_IMAGE_DEV:${{ matrix.craft_image_tag }}_${{ steps.branch_slug.outputs.slug }} # Main image will contain only builds from semantic tags - # ghcr.io/fortrabbit/craft-copy:8.0 + # ghcr.io/fortrabbit/craft-copy:8.0 - removed push to not break old installs of craft-copy that depend on old version of the image # ghcr.io/fortrabbit/craft-copy:8.0_1.2.3 - name: Publish main image if: steps.check-tag.outputs.match == 'true' run: | - docker push $DOCKER_REGISTRY_IMAGE:${{ matrix.craft_image_tag }} docker push $DOCKER_REGISTRY_IMAGE:${{ matrix.craft_image_tag }}_${{ steps.branch_slug.outputs.slug }}