From 00df22bcbd52db57f38b22ad785dfa8e35e1f6da Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 10 Oct 2022 10:45:19 -0400 Subject: [PATCH] fix(workflows): fix docker image publish flow Signed-off-by: Rui Chen --- .github/workflows/atlantis-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/atlantis-image.yml b/.github/workflows/atlantis-image.yml index ec1d306305..3759974fd8 100644 --- a/.github/workflows/atlantis-image.yml +++ b/.github/workflows/atlantis-image.yml @@ -63,7 +63,7 @@ jobs: push: true tags: | ghcr.io/${{ github.repository_owner }}/atlantis:${{ env.RELEASE_VERSION }} - ghcr.io/${{ github.repository_owner }}/atlantis:latest + ghcr.io/${{ github.repository_owner }}/atlantis:prerelease-latest - name: Build and push atlantis:${{ env.RELEASE_VERSION }} image for stable release if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && (!contains(github.ref, '-pre.')) }} @@ -74,4 +74,4 @@ jobs: push: true tags: | ghcr.io/${{ github.repository_owner }}/atlantis:${{ env.RELEASE_VERSION }} - ghcr.io/${{ github.repository_owner }}/atlantis:prerelease-latest + ghcr.io/${{ github.repository_owner }}/atlantis:latest