From a1bfeb0714ec9ce74ca4ee33f084d046952d8093 Mon Sep 17 00:00:00 2001 From: Niladri Halder Date: Fri, 8 Dec 2023 18:02:25 +0530 Subject: [PATCH] fix(ci): replace crazy-max/ghaction-docker meta with docker/metadata-action Signed-off-by: Niladri Halder --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6944472..2aa32a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -132,16 +132,16 @@ jobs: - name: Docker meta id: docker_meta - uses: crazy-max/ghaction-docker-meta@v1 + uses: docker/metadata-action@v4 with: # add each registry to which the image needs to be pushed here images: | ${{ env.IMAGE_ORG }}/nfs-server-alpine quay.io/${{ env.IMAGE_ORG }}/nfs-server-alpine ghcr.io/${{ env.IMAGE_ORG }}/nfs-server-alpine - tag-latest: true - tag-semver: | - {{version}} + tags: | + type=raw,value=latest,enable=true + type=raw,value={{version}} - name: Print Tags run: |