From 26f28e632eb3d6991d27bb91b88b45c85d454f49 Mon Sep 17 00:00:00 2001 From: MuneebAijaz Date: Tue, 6 Aug 2024 14:46:47 +0500 Subject: [PATCH] fix plain manifests --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c24a521..519a0d5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -131,6 +131,7 @@ jobs: run: | echo GHCR_IMAGE_REPOSITORY=${{env.REGISTRY}}/$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV + # tag this image as latest as it will be used in plain manifests - name: Build and Push Docker Image to ghcr registry uses: docker/build-push-action@v5 with: @@ -142,7 +143,7 @@ jobs: cache-to: type=inline platforms: linux/amd64,linux/arm,linux/arm64 tags: | - ${{ env.GHCR_IMAGE_REPOSITORY }}:${{ steps.generate_tag.outputs.RELEASE_VERSION }} + ${{ env.GHCR_IMAGE_REPOSITORY }}:${{ steps.generate_tag.outputs.RELEASE_VERSION }},${{ env.GHCR_IMAGE_REPOSITORY }}:latest labels: | org.opencontainers.image.source=${{ github.event.repository.clone_url }} org.opencontainers.image.created=${{ steps.prep.outputs.created }}