From d6365b32bd097c4931c4372c5a028a1858da443d Mon Sep 17 00:00:00 2001 From: Madison Swain-Bowden Date: Thu, 13 Jan 2022 14:30:17 -0800 Subject: [PATCH] Push tags with `openverse-` prefix --- .github/workflows/ci_cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index c9302f5e8..45148fc5c 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -176,11 +176,11 @@ jobs: - name: Load and tag image `${{ matrix.image }}` run: | docker load --input /tmp/${{ matrix.image }}.tar - docker tag ${{ matrix.image }} \ + docker tag openverse-${{ matrix.image }} \ ghcr.io/wordpress/openverse-${{ matrix.image }}:latest - docker tag ${{ matrix.image }} \ + docker tag openverse-${{ matrix.image }} \ ghcr.io/wordpress/openverse-${{ matrix.image }}:${{ github.sha }} - docker tag ${{ matrix.image }} \ + docker tag openverse-${{ matrix.image }} \ ghcr.io/wordpress/openverse-${{ matrix.image }}:${{ github.ref_name }} docker push --all-tags ghcr.io/wordpress/openverse-${{ matrix.image }}