From ce4c7dbd512f256c16eb62dfca8bbdbca3bf7dca Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 10 Oct 2022 13:07:12 -0400 Subject: [PATCH] fix(workflows): fix docker image publish flow (#2580) Signed-off-by: Rui Chen 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 ec1d30630..3759974fd 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