From aa7d0b9918dfa620d2c7b7d6b07abc33dc8def74 Mon Sep 17 00:00:00 2001 From: Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> Date: Tue, 24 Oct 2023 15:14:00 -0400 Subject: [PATCH] Fix promote workflow (#1613) --- .github/workflows/promote.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/promote.yaml b/.github/workflows/promote.yaml index ac79ab2d..60f14fdb 100644 --- a/.github/workflows/promote.yaml +++ b/.github/workflows/promote.yaml @@ -38,7 +38,7 @@ jobs: - name: Re-tag and promote awx-operator image run: | docker pull ghcr.io/${{ github.repository }}:${TAG_NAME} - docker tag ghcr.io/${{ github.repository }}:${TAG_NAME} quay.io/${{ github.repository }}:${{ github.event.release.tag_name }} + docker tag ghcr.io/${{ github.repository }}:${TAG_NAME} quay.io/${{ github.repository }}:${TAG_NAME} docker tag ghcr.io/${{ github.repository }}:${TAG_NAME} quay.io/${{ github.repository }}:latest docker push quay.io/${{ github.repository }}:${TAG_NAME} docker push quay.io/${{ github.repository }}:latest