From 4120ecb3cbb623dca4942a8ecbd0b482b7ea604a Mon Sep 17 00:00:00 2001 From: Stefan Date: Sat, 30 Dec 2023 22:02:11 +0100 Subject: [PATCH] Automatically update README on docker hub (#6085) * Automatically update README on docker hub --- .github/workflows/docker.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index e3d61b2d2..f71e38ccc 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -89,3 +89,11 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + - name: Update repo description + uses: peter-evans/dockerhub-description@v3 + if: github.ref == 'refs/heads/master' + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + repository: etherpad/etherpad + enable-url-completion: true \ No newline at end of file