From dfd5aad6049ee41263bce3d00a91b55cfd8d1832 Mon Sep 17 00:00:00 2001 From: Strongest Number 9 <16169054+StrongestNumber9@users.noreply.github.com> Date: Mon, 22 May 2023 14:32:53 +0300 Subject: [PATCH] Tag docker image as :latest aswell (#10) --- .github/workflows/upload_release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/upload_release.yaml b/.github/workflows/upload_release.yaml index 02de0f6..d47cbba 100644 --- a/.github/workflows/upload_release.yaml +++ b/.github/workflows/upload_release.yaml @@ -73,5 +73,5 @@ jobs: - name: 'Build Image' run: | - docker buildx build --output type=docker --tag ghcr.io/${{ env.REPO_LC }}/app:${{ github.event.release.tag_name }} . - docker push ghcr.io/${{ env.REPO_LC }}/app:${{ github.event.release.tag_name }} + docker buildx build --output type=docker --tag ghcr.io/${{ env.REPO_LC }}/app:${{ github.event.release.tag_name }} --tag ghcr.io/${{ env.REPO_LC }}/app:latest . + docker push ghcr.io/${{ env.REPO_LC }}/app --all-tags