From b8eadbfb27a0d0c74fd55be3a845352e43bbd6e5 Mon Sep 17 00:00:00 2001 From: Niladri Halder Date: Fri, 8 Dec 2023 17:07:00 +0530 Subject: [PATCH 1/2] chore: add @njuptlzf's change (PR #167) to the changelog Signed-off-by: Niladri Halder --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb313f3..2351281 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,8 @@ * add support for specifying mountOptions to default StorageClass ([#164](https://github.com/openebs/dynamic-nfs-provisioner/pull/164),[@pentago](https://github.com/farcaller) [@dsharma-dc](https://github.com/dsharma-dc)) * update documentation on backend storage prerequisite ([#165](https://github.com/openebs/dynamic-nfs-provisioner/pull/165),[@matthew-williams](https://github.com/matthew-williams) [@dsharma-dc](https://github.com/dsharma-dc)) * update google analytics to use GA4 ([#174](https://github.com/openebs/dynamic-nfs-provisioner/pull/174),[@Abhinandan-Purkait](https://github.com/Abhinandan-Purkait)) - +* add a toggle to allow/disallow garbage collection for the backend PVC ([#167](https://github.com/openebs/dynamic-nfs-provisioner/pull/167),[@njuptlzf](https://github.com/njuptlzf)) + 0.10.0 / 2023-02-09 ======================== * add original PVC context to the nfs server deployment labels ([#151](https://github.com/openebs/dynamic-nfs-provisioner/pull/151),[@farcaller](https://github.com/farcaller)) From a1bfeb0714ec9ce74ca4ee33f084d046952d8093 Mon Sep 17 00:00:00 2001 From: Niladri Halder Date: Fri, 8 Dec 2023 18:02:25 +0530 Subject: [PATCH 2/2] 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: |